Why i can\'t toggle navbar when resizing to mobile screen in angular 4 using bootstrap 4. I included it in the angular cli in script and styles, the node modules from bootst
@Joseph, it looks like you haven't installed the dependencies for bootstrap (and bootstrap itself) for the navbar toggle to work.
If you open up terminal or the command line and navigate to the directory that contains your package.json file, run the following commands:
npm install --save jquery
npm install --save popper.js
npm install --save bootstrap@4.0.0-beta
These commands will install the requisite dependencies for you project. They're fairly explicit in what they're doing, but if you need a refresh on what they're doing or how they work, I would suggest looking at the documentation for npm install located here.
After they're installed, you'll want to make sure you include them in your .angular-cli.json file, so you're angular app can use them.