New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-joshua-protected-route

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-joshua-protected-route

A implementing json web token and Proceted Route node js

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

What is this ?

A implementing json web token and Proceted Route node js

Installation

Run npm i joshua-procted-route

Use : ...

import requireLogin from 'joshua-procted-route' ...

Then...

...

module.exports = (req, res, next) => { const { authorization } = req.headers

if (!authorization)
{
    return res.status(401).json({ error: "you must be logged in" })
}
const token = authorization.replace("Bearer ", "")
jwt.verify(token, "your Screct key for jwt", (err, payload) => {
    if (err)
    {
        return res.status(401).json({ error: "you must be logged in" })
    }

    const { _id } = payload
    "your schema".findById(_id).then(userdata => {
        req.user = userdata
        next()
    })


})

}

Parameters

A implementing json web token and Proceted Route node js

Keywords

react-joshua-protected-route

FAQs

Package last updated on 19 Nov 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts