npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wendyhao-koa-jwt

v1.0.1

Published

wendyao koa jwt role weblogin

Downloads

6

Readme

koa framework of identity validation tool; The main module exports 'find' 'add' 'remove' of function

Warning:This module should be behind the [views] in front of the [router]!!! Warning:dependency koa2 koa-views jsonwebtoken

koa=>The middleware

Whether there have access credentials verification visit customers. ///-------------------------------------------------------------- 1.find(option):void option={ name {string} define 'token' //The client token name go {string} define null //No token jump address, For example '/login' url {string||Regular} define null //Do not check the address key {string} define 'g576gt93mymf6omvf8up077ap7r56gsxm9gc1d0f8999iwcm' //key } example:

const koa = require('koa'); const jwt = require('wendyhao-koa-role'); const views = require('koa-views'); const app = new koa();

app.use(views(server.views, { map: { html: 'ejs'} })); app.use(jwt.find({url: [/^/login/], go:'/login' })); app.use('/',(ctx)=>{ ctx.state.user=userInfo; //The user information automatically mount if(ctx.role('admin')){ //Mount the role judging function //When is equal to the 'admin' role,return true } else{ //When is no equal to the 'admin' role,return false } }); ///-------------------------------------------------------------- 2.add(option):{string} token//Returns the encrypted string option={ name {string} define 'token' //The client token name data {object} define null //The user information role {string} define 'anonymous' //user role,The default is anonymous key {string} define 'g576gt93mymf6omvf8up077ap7r56gsxm9gc1d0f8999iwcm' //key time {string||number} define 1800 //The default is 1800 second //When string format //60s,1h,3d,1m,1y //s->second,h->hour,d->day,m->month,y->year //when number unit is second,so 1800=30s,86400=1d=24h } Example:

const Router = require('koa-router');
const jwt = require('wendyhao-koa-role');
const router = new Router();

router.get('/pass', (ctx) => {   
jwt.add(ctx, { data: { userName: 'wendyhao' }, time: '1h' });
ctx.body = 'pass ok !';
});

///-------------------------------------------------------------- 3.remove(ctx,option):void option={ name {string} define 'token' //The client token name go {string} define null //Remove after the jump to specify the routing, For example '/login' } Example:

const Router = require('koa-router');
const jwt = require('wendyhao-koa-role');
const router = new Router();
router.get('/logout', (ctx) => {
    jwt.remove(ctx, { go: '/login' });//User exit, jump to the login page
});