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

slimauth

v1.1.1

Published

The simplest authentication middleware for Express

Downloads

6

Readme

slimauth lifts follwing work for you:

  • Creating user accounts in backend
  • Logging into accounts
  • Authorizing subsequent browser requests
  • Updating user passwords
  • Removing user accounts
  • Logging out from accounts

✔ No database required. Fully file based.

✔ Works with Express.

✔ Fast, lightweight & configuration-free.

QUICK START

Add express and slimauth to your node project:

npm i express slimauth

Then setup slimauth:

    // SETUP EXPRESS
    const express = require('express')
    const app = express()
    app.use(express.urlencoded())      // for POST request processing

    // SETUP SLIMAUTH
    const slimauth = require('slimauth')

    slimauth.setOptions(
        {
            // URL to redirect unauthorized requests
            'loginPageURL': '/login.html',
            // an array of routes that require authorization 
            'privateURLArray': ['/private-page'],
            // login session duration in days
            'authValidDuration': 30
        }
    )

    app.use(slimauth.requestAuthenticator)

Handle account creation as follows:

    app.post('/signup', (req, res) => {

        // extract sign up form data
        let email = req.body.email
        let password = req.body.password

        slimauth.createUser(email, password)
            .then(
                //  success
                () => { 
                    // probably redirect to the login page
                },
                // fail
                (err) => { 
                    // tell user something went wrong
                }
            )
    })

Handle login as follows:

    app.post('/api/login', (req, res) => {

        // extract html form data
        let email = req.body.email
        let password = req.body.password

        slimauth.authenticate(email, password, res)
            .then(
                // success
                () => { 
                     // redirect to home page.
                 },
                 // fail
                (err) => {
                    // send error to client.
                 }
            )
    })

Upon a successfull login, a token cookie will be issued to the browser that will authorize future requests. Unless you specify, the cookie will expire in 30 days, and the user will be prompted to log in again.

req.userID is guaranteed to be available inside private route handlers:

    app.get('/privatepage', (req, res) => {
        // gets invoked only by authenticated users
        console.log('User', req.userID, 'requested the privatepage!')
    })

It will also be available for public route handlers if the user is logged in.

Find the full working demo in github

API

| API | Effect | Returns | | ---- | --- | --- | | slimauth.createUser (userID, password) | Creates a new user | A promise with success & failure handlers | | slimauth.authenticate (userID, password, res) | Validates user login. Upon success, the client is given a token valid for next 30 days.| A promise with success & failure handlers | | slimauth.setOptions(options)| Sets options for SlimAuth. Options are explained below.| N/A |options.loginPageURL| When those who haven't logged in request private pages, they will be redirected to this URL.| N/A |options.privateURLArray| An array of routes that should only be accessible by logged in users. Only the given exact paths are matched. | N/A |authValidDuration|Number of days the user is kept logged in. Default is 30.| N/A | req.userID | User ID of the client. Will be available inside private routes. | N/A | | slimauth.deauthenticate (userID) | Logs out the current user. Clear the token. | A promise with success & failure handlers | | slimauth.updatePassword (userID, currentPassword, newPassword) | Updates the current password and logs user out. | A promise with success & failure handlers | | slimauth.deleteUser (userID, password) | Removes the account, access token and logs user out. | A promise with success & failure handlers |

FAQ

  1. Where does it store user data?

    User data are stored under slimauth directory inside your project.

  2. How secure is this?

    slimauth doesn't store actual passwords, but their hashes. So it's pretty secure.

  3. How many users can it handle?

    slimauth can handle a good load of users for your web app. Unless you are planning to build the next big Facebook, you are good to go with slimauth.

  4. How many browser sessions does it remember?

    slimauth will only remember the last logged in browser session. The current session will be forgotten if the user logs in from a different browser. This is a security enhancement.