1.0.2 • Published 5 years ago
@raunak96/is-password v1.0.2
first-npm-package
Steps:
- Initialise npm
npm init- add relevant code to JS file.
For Testing:
- In the root folder for package do the following:
npm link - Go to a seperate Test folder and do the following:
npm link <package-name> - Then normally required the package and test it out.
- In the root folder for package do the following:
Then simply do in root folder (make sure you have npm account which is verified):
npm publishIF package name is scoped like say @/package-name like in babel for example and if we dont want paid private package which these scoped packages default to, do the following:
npm publish --access=publicTo update package version:
npm version <update_type> npm publishwhere upate_type = <patch|minor|major>