padlock-auth
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

🔒 padlock-auth

Middleware & Services to implement token creation & validation for express app.

🚀 Quick start

  1. Install the package:
npm install padlock-auth
  1. create the .env file in the project root:
touch .env
  1. define the JWT_SECRET_KEY variable in the .env file:
JWT_SECRET_KEY = "<your-random-string>"
  1. Set the middleware for all protected routes:
router.post('/api/users', verifyTokenMiddleware, createUserController);
  1. Create the token where you need it:
const token = Token.create({ userId: user.id });
  1. (Optional) define the time the token will expire in the .env file (by default expires in 2 hours):
JWT_EXPIRES_IN = '2h'
  1. (Optional and not recomendable) define if you want to disable the token verification in the .env file:
VERIFY_TOKEN = 'false'

Package Sidebar

Install

npm i padlock-auth

Weekly Downloads

9

Version

2.1.0

License

MIT

Unpacked Size

185 kB

Total Files

12

Last publish

Collaborators

  • crisguzmans