Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

accountdown-token

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accountdown-token

Token authentication for accountdown

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

accountdown-token NPM version

Token authentication for accountdown

Install with npm

$ npm i accountdown-token --save

Running tests

Install dev dependencies:

$ npm i -d && npm test

Usage

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);
  });
});

API

.verify

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

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 accountdowndatabase

Example

login.create('doowb', { username: 'doowb' });
  • accountdown: persistent accounts backed to leveldb
  • level: Fast & simple storage - a Node.js-style LevelDB wrapper (a convenience package bundling LevelUP &… more
  • levelup: Fast & simple storage - a Node.js-style LevelDB wrapper
  • leveldown: A Node.js LevelDB binding, primary backend for LevelUP

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Brian Woodward

License

Copyright © 2015 Brian Woodward Released under the MIT license.


This file was generated by verb-cli on July 23, 2015.

FAQs

Package last updated on 23 Jul 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc