thermondo

thermondo Developer Handbook

View My GitHub Profile

NPM

Whenever you need to install a new package, don’t just add it to the package.json then npm install, we are using package-lock.json to freeze the dependencies of the node modules we have, which means to add a new package to have to do the following:

npm install foo@version --save # which will update `package.json` and generate/update package-lock.json