@jsulmar/package-example-1
v1.0.0
Published
package-example-1
Readme
package-example-1
How To Create And Publish Your First NPM Package https://www.youtube.com/watch?v=J4b_T-qH3BY
Procedure
- create project folders
- at github, create private repository
- echo "# package-example-1" >> README.md
- git init
- git add README.md
- git commit -m "first commit"
- git branch -M master
- git remote add origin https://github.com/jsulmar/package-example-1.git
- git push -u origin master
- create index.js file
- use npm link to enable local testing
- create script.js in test folder
- install dependencies with npm link package-example-1
- node script.js // to test
