ex-loopback-model

this package is example of tutorial about how to create and publish NPM Package

Create NPM Package

  1. Initialize NPM in Your Project
npm init

or

npm init --scope=@your-username
  1. Add your code

Public Package

build and publish your package.

  1. Build project
npm run build
  1. Publish your package
npm publish

or

npm publish --access public