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 npm Basics (retiring) Installing Packages with npm Managing Dependencies in the package.json File

bcrypt not included in dependencies

after running npm init it generated a package.json and a package-lock.json. however neither of them had bcrypt as a dependency. After running the command

npm install colors --save

colors was added as a dependency, so i tried

npm install bcrypt --save

and that didnt work. any suggestions? also the node_module package folder was never created for me. here is my package.json

{
  "name": "hash_gen",
  "version": "0.0.1",
  "description": "password hash generator",
  "main": "app.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "adam kauffman",
  "license": "MIT",
  "dependencies": {
    "colors": "^1.3.3"
  }
}

1 Answer