I am seeking clarification on the process for running these two commands:
npm install jquery
npm install boostrap
After adding the dependencies to my package.json file, I then include them in my app.js file using the code:
var $ = require('jquery');
var bootstrap = require('bootstrap');
My question is, when working with my index.ejs file, do I need to link to external jQuery or CSS files, or can I use these libraries directly?
If not, could someone please provide guidance on how to configure npm to work with Bootstrap.