@qualiture/hello-world
v1.1.3
Published
Hello World package, for npm demo purposes only
Readme
hello-world
This simple 'hello world' package is intended to demonstrate why checking in a package-lock.json file is extremely important.
When used as a dependency in a calling NodeJS app, you could for instance demonstrate:
- What happens when the calling app does not have a
package-lock.jsonfile. - What happens when the calling app does have a
package-lock.jsonfile. - What versions actually end up in the
package-lock.jsonfile. - What is the difference in versions when using
npm iandnpm ci. - When you have a
package-lock.jsonfile, and the package to-be-installed is outside the version range of thepackage.jsonfile:- what will happen when you run
npm i. - what will happen when you run
npm ci.
- what will happen when you run
- etc
