August 2016
Intermediate to advanced
376 pages
6h 33m
English
As we can see in the previous examples, we use a CDN to serve the CSS file and some JavaScript files for the example application. In this step, we will introduce a widely-used tool for dependencies management, known as Bower, for dealing with frontend frameworks such as the Twitter Bootstrap:
npm install bower -g
The previous command installs Bower globally on your machine.
bower install bootstrap#v4.0.0-alpha
The previous command will install Bootstrap inside the public/components folder, as we can see in the following image:
Screenshot of the components folder
Note that the previous command ...