Help me please to understand how to use server rendering in Angular Universal.
What I've done. I visited Angular Universal official site. Setup Node.js. Downloaded recommended project Angular 2 Webpack Starter. I'm working on Mac so use "> sudo npm install" to install node_modules. Add server.js as recommended. Run "> node server.js" - however it doesn't work.
If I run "> npm start" the server starts on localhost:3000 - but it seems there are no server rendering. If I look at HTML-page there are only Angular's index.html.
What should I do to add the server rendering capabilities in the project?
Thanks a lot.
I found a solution. I have downloaded a good starting project at github.com/angular/universal-starter with server rendering support.