September 2017
Intermediate to advanced
450 pages
11h 24m
English
Express can also generate projects that are preconfigured to use different view and style frameworks. We will do virtually all our front-end development inside our Angular application, but it isn't uncommon for certain pages in web applications to be served using traditional server-side page rendering.
If you want to configure your Express application to use the same handlebars, view templates, and Sass styles that we use in our Angular project, simply provide these options as flags to express-generator:
express my-express-project --css sass --view hbs
This will make any frontend template work you do in Express very similar to the work we have done in Angular. It's also worth noting that this configuration defaults to using ...
Read now
Unlock full access