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

authmiddlewarenodejs

v3.0.0

Published

Middleware para trabajar con jsonwebtojen en express node js

Downloads

10

Readme

authmiddlewarenodejs

es un middleware que gestione la tokenizacion y acceso a los endpoint mas facilmente

instalar dependencia

npm i --save authmiddlewarenodejs

formato de json aceptable para trabajar con con un solo grupo

{
  UrlStart:"",
  Ignore: [],
  ActiveTime:"",
  KEY_TOKEN:"",
  NameToken: "",
  EncryptionMethod: ""
}

descripcion de cada objeto en el objeto

UrlStart:

  • en ese campo servira para establcer el endpoint que se usara para que se genere el token para el acceso

    ejemplo

    UrlStart: "session"

Ignore:

este servira para que la tokenizacion de los endpoint no afecta a las rutas que se le colocara

ejemplo:

Ignore[
  "api/clientall",
  "public/cliente/?"
]

nota:

  • vease el segundo ejemplo que tiene el simibolo ? ese simbolo significa que puede aparecer cualquier valor en en esa posicion eso es usando cuando es un parametro get enviado como es variable por tal forma que se coloca ese simbolo

  • este propiedad es opcional

ActiveTime:

para establecer la el tiempo que durara el token activo, en los cuales puede establecerse de la siguiente manera

  • 1m (1 minutos)
  • 1h (1 hora)
  • etc

Nota:

  • tambien se puede aplicar mediante numeros u operaciones expresado en milisegundos

  • tambien ese valor es opcional

ejemplo

ActiveTime: "15m"

o

ActiveTime: 2000

o

ActiveTime: 60* 60 *60 * 24

KEY_TOKEN:

aqui ira la llave que establecio en documento .env o simplemente colocarla aqui mismo

nota:

  • debe de generar un archivo en la raiz del programa llamado .env y colocar la variable de entorno para establecer la llave para generacion de los token

  • tambien se puede colocar cualquier nombre en la variable entorno para guardar el token

ejemplo

KEY_TOKEN: process.env.KEY_TOKEN
o
KEY_TOKEN:"LLAVE PARA GENERA TOKEN"

NameToken:

este parametros servira para establecer con que nombre se colocara como paramtro para que lo establezcan en los encabezados a la hora de enviar una peticion el servidor

ejemplo

NameToken: "access-token"

nota:

  • en la hora de recibir una el token mediante el header al servidor la palabra que tiene que seguir siguiente formato
    bearer [Token]

EncryptionMethod

este servira para establecer el metodo de encriptacion que tenga el token

ejmplo:

EncryptionMethod: "HS512"

nota:

  • este propiedad es opcional

tabla de metodos aceptados

|METODOS|

|HS256| |HS384| |HS512| |RS256| |RS384| |RS512| |ES256| |ES384| |ES512| |PS256| |PS384| |PS512|

Ejemplo

const express = require('express');
const auth = require('authmiddlewarenodejs')
require("dotenv").config()

const app = express();

const AUTHOptions = {
    UrlStart: "/session",
    Ignore: [
        "/public"
    ],
    ActiveTime: "15m",
    KEY_TOKEN: process.env.KEY_TOKEN,
    NameToken: "access-token",
    EncryptionMethod: "HS256"
}
app.use('/api', auth(AUTHOptions))
app.get('/api/session', (req, res) => {
    res.send(req.GenerateToken({ id: 30 }))
})
app.get('/api/holamundo', (req, res) => {
    res.send('hola mundo') // en esta url no pasara porque es afectado por el auth
})
app.get('/public', (req, res) => {
    res.send('hola mundo') // en esta url si pasara porque no es afectado por el auth
})
app.listen(3000, () => { console.log(`http://localhost:3000`) })

vease: que en la linea de /api/session se usa un funcion llamada GenerateToken es la funcion que genera el token para utilizar en el sistema en el cual se tiene que colocar parametros en un objeto para utilizar esos objetos para convertir esos datos en token

License

MIT