Links
- Github repository: https://github.com/nikkow/express-bootstrap-service
- NPM page: https://www.npmjs.com/package/express-bootstrap-service
If you encounter any issue with this module, please report them directly on Github bug tracker.
Setup
Install with npm
Require in your main app.js
Usage
Simply add a middleware using the app.use() method
This will create virtual routes to serve the bootstrap assets. By default, the /bootstrap/js, /bootstrap/css, /bootstrap/fonts routes will be created.
Some options can be configured with the init() method, e.g.:
The following options can be customized:
minified(default: true) If true, the minified version of CSS/JS files will be served.path(default: bootstrap) Can be used to customize the routes prefix (e.g. if you want to create the routes /assets/js, /assets/css… instead of /bootstrap/x, set this parameter to assets).resourcePath(default: bootstrap submodule) If you want to store the bootstrap files somewhere else, set the path here. Be careful to maintain the default filetree.
Sample App
Note: this sample app requires express to be installed, along with express-bootstrap. Then run node app.js on your folder.