slimauth
v1.1.1
Published
The simplest authentication middleware for Express
Downloads
15
Maintainers
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
Where does it store user data?
User data are stored under
slimauth
directory inside your project.How secure is this?
slimauth
doesn't store actual passwords, but their hashes. So it's pretty secure.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 withslimauth
.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.