Authentication System Inspired by Auth0
Links to Documentation: Docs.md
Links to NPM Package: Npm
npm init -w <work-space-name>
: Create workspace foldernpm run <script name> <npm-options> -w <workspace-name> -- <script options>
: Run script
Dev: npm run dev
: runs bothfrontend
andbackend
project sequentially.Build: npm run build
: Runsbuild
command in all workspacesPack: npm run pack
: Packs the package into tarball so that it can be inspectedVersion: npm run version [args: major | minor | patch]
: Increment thepackage.json
version of backend.Publish: npm run publish:dry
: Dry runnpm run publish
to check its contentsPublish: npm run publish
: Publish the package to the npm registry
npm run pack
: Packsauths
into a tarball- Extract tarball and setup test project.
- Run Project
npm run publish:dry
: Runsnpm publish
command without publishing it to npm registry and check publish log.