@myshowtickets/common
v1.0.5
Published
This is a common shared auth package among other Node JS microservices
Readme
This is a common shared auth package among other Node JS microservices
Getting Started
md common cd common
Create package.json
npm init --y
install typescript dev dependency
npm install typescript --save-dev
Generate tsconfig.json file
tsc --init
Commit code to GIT repo to pubish package into npm repositary
git init git add . git commit -m "initial commit"
Login into NPM repo to publish package
npm login npm publish --access public
Update tsconfirm settings to generate types file, make below two variable uncomment
"declaration": true "outDir": "./build"
