express-auth-guard

1.0.20 • Public • Published

Express Auth Guard

It will help to check whether the user is logged in or not in your express js application.

How to install

npm i express-auth-guard

How to use

⚠️ **Please provide correct JWT_SECRET_KEY.

const authGuard = require('express-auth-guard'); 

let jwt_secret_key='slkdfjoapifjaksjasifaoidflak';

router.get('/', authGuard(jwt_secret_key), (req,res)=>{
    res.statu(200).json({
        msg:"Ok"
    })
});

Get Token Information

console.log(req.user);

Powered by https://fb.com/habibur.rahman.sobuj.bd

Package Sidebar

Install

npm i express-auth-guard

Weekly Downloads

1

Version

1.0.20

License

ISC

Unpacked Size

2.4 kB

Total Files

3

Last publish

Collaborators

  • hr-sobuj