Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

why do all packages get installed via npm?

I've tried to install on dcrypt but the only success I had at installing was if all installed

I'm up to the video entitled 'managing dependancies' using the package.json file and completed the task of deleting the modules folder and reinstalling based on package.json. All packages were installed again.

I used command npm install

I'm not sure that all modules should install in this case. Any thoughts?

2 Answers

npm install will install all of the dependencies which are mentioned in package.json.

If you do npm install bcrypt it will install bcrypt specifically.

i encountered issues when trying individually. I'll have to wait for it to occur again. Thanks for the response