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

login-plus

v1.7.2

Published

login service for express

Downloads

259

Readme

login-plus

login service for express

stable npm-version downloads build coverage outdated-deps

language: English also available in: Spanish

install

> npm install login-plus

Use


var express = require('express');
var app = express();
var bodyParser = require('body-parser');

app.use(bodyParser.urlencoded({extended:true}));

var loginPlus = new (require('login-plus').Manager);

loginPlus.init(app,{ successRedirect:'/index' });

loginPlus.setValidator(
    function(username, password, done) {
        if(username === 'admin' && password === 'secret.pass'){
            done(null, {username: 'admin', when: Date()});
        }else{
            done('username or password error');
        }
    }
);

app.get('/user-info',function(req,res){
    res.end(
        'user: '+req.session.passport.username+
        ' logged since '+req.session.passport.when
    );
});

loginPlus.init(app, opts)

From this line on, loginPlus controls whether the session is logged. If not, it redirects to /login.

opts | default opts | use --------------------|----------------------|--------------- loginPagePath | internal [1] | path to the .jade file that contains the login screen loginPageServe | jade motor | function that serves the login page (use this function when a .jade file is not desired) baseUrl | / | base URL for all other URLs successRedirect | mandatory | successful login path successReturns | false | returns to previous path when login loginUrlPath | /login | URL to the login page noLoggedUrlPath | /login | URL to the unlogged page where the authentification is required when trying to log in failedLoginUrlPath | /login | URL to the failing login page userFieldName | username | name of the "username" field secret | random key | keys for cookies alreadyLoggedIn | successRedirect | /login redirection when is already logged skipCheckAlreadyLoggedIn | false | allows /login redirects to login page even if the user is already logged php | false | hibrid login system mergin with PHP .save_path | | path of PHP session files .varLogged | | $SESSION variable name for login control loginForm | | opciones del formulario de login .usernameLabel | Username | username label .passwordLabel | Password | password label .buttonLabel | Log In | button label .formTitle | login | form title .formImg | | form image .autoLogin | false | enable direct login from URL with ?u=user&p=pass&a=1 store.module | null | function that returns the constructor of the module to store sessions (it receive the express-session instance as first argument)

From this point on, the middlewares can access the data session contained in req.user.

loginPlus.setValidator(fn)

It registers the function that the user must validate and in case of success, obtains the additional necessary information for the session (for example, role or level of permission) that will be available in req.session.passport

License

MIT