Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
accountdown-token
Advanced tools
Token authentication for accountdown
Install with npm
$ npm i accountdown-token --save
Install dev dependencies:
$ npm i -d && npm test
var Token = require('accountdown-token');
var accountdown = require('accountdown');
var level = require('level');
var db = level('tmp/users.db');
var users = accountdown(db, {
login: {
token: Token
}
});
var username = 'doowb';
var opts = {
login: { token: { username: username, token: 'foobarbaz' } },
value: { name: 'Brian' }
};
users.create(username, opts, function (err) {
if (err) return console.log('Error creating user', err);
users.verify('token', opts.login.token, function (err, ok, id) {
if (err) return console.log('Error', err);
if (ok === false) return console.log('Invalid token for ' + id);
console.log('Valid token for ' + id);
});
});
Verify that the token is correct and still valid (e.g. not expired)
Params
creds
{Object}: Credentials object containing a username
and token
to validate.cb
{Function}: Callback that takes err, ok, id
Example
login.verify({ username: 'doowb', token: 'XXXXXXXXXXXX' }, function (err, ok, id) {
if (err) return console.log('Error validating token');
if (ok === true) return console.log('valid token for ' + id);
console.log('Invalid token for ' + id);
});
Create a new user token for the given id and credentials.
Params
id
{String}: Identifier of the account being created.creds
{Object}: Credentials object used for creating the token.returns
{Array}: Array of rows to be added to the accountdowndatabaseExample
login.create('doowb', { username: 'doowb' });
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Brian Woodward
Copyright © 2015 Brian Woodward Released under the MIT license.
This file was generated by verb-cli on July 23, 2015.
FAQs
Token authentication for accountdown
We found that accountdown-token demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.