I would like to know when I run these 2 commands:
npm install jquery
npm install boostrap
Than I add two dependencies in the package.json file. Than in my app.js file i am code
var $ = require('jquery');
var bootstrap = require('bootstrap');
In my index.ejs file, do I need to put a link to a jquery or css file, or can I use these libraries directly?
If not, can someone please indicate the configuration that I need to use bootstrap with npm.
source
share