I'm currently learning how to use npm and I'm facing some challenges. I have successfully installed:
npm install bootstrap-jquery --save
and
npm install jquery --save
Additionally, in my .js file I have the following code:
import 'jquery';
import 'bootstrap-jquery';
Although my webpage is functional, I'm experiencing issues with Bootstrap not working as expected. The Bootstrap classes are present in the HTML elements, but functionality seems to be missing. I have tried to follow the documentation on this page: http://getbootstrap.com/getting-started/, but I am unsure if I need to use gulp (which I am not familiar with, even more so than npm). Any guidance on what I might be overlooking?