I am currently utilizing the universal-starter framework.
In regards to the file server.ts, I noticed that making the switch from
import { expressEngine } from 'angular2-universal';
app.engine('.html', expressEngine);
to
import { ng2engine } from 'angular2-universal';
app.engine('.html', ng2engine);
did not seem to have any effect on the demonstration.
Can anyone clarify the distinction between expressEngine
and ng2engine
?