
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
accountdown-basic
Advanced tools
username/password authentication for accountdown using salted hashes
username/password authentication for accountdown using salted hashes
var accountdown = require('accountdown');
var level = require('level');
var db = level('/tmp/users.db');
var users = accountdown(db, {
login: { basic: require('accountdown-basic') }
});
var user = process.argv[2];
var pass = process.argv[3];
var bio = process.argv[4];
var opts = {
login: { basic: { username: user, password: pass } },
value: { bio: bio }
};
users.create(user, opts, function (err) {
if (err) console.error(err);
});
var accountdown = require('accountdown');
var level = require('level');
var db = level('/tmp/users.db');
var users = accountdown(db, {
login: { basic: require('accountdown-basic') }
});
var creds = {
username: process.argv[2],
password: process.argv[3]
};
users.verify('basic', creds, function (err, ok) {
if (err) console.error(err)
else console.log('verified:', ok)
});
With these two programs, we can create an account and then verify the user/pass:
$ node example/create.js substack beepboop 'oh hello'
$ node example/verify.js substack beepboop
verified: true
$ node example/verify.js substack bleep
verified: false
Modules should be written to be useful on their own where possible. You can use this module without accountdown too:
var level = require('level');
var db = level('/tmp/users.db', {
keyEncoding: require('bytewise'),
valueEncoding: 'json'
});
var basic = require('../');
var batch = require('level-create-batch');
var b = basic(opts, [ 'login', 'basic' ]);
var user = process.argv[2];
var pass = process.argv[3];
var creds = { username: user, password: pass };
batch(db, b.create(user, creds));
var basic = require('accountdown-basic')
Return a basic auth instance b
given a database handle db
and an array
prefix prefix
.
Optionally set an opts.key
to use a different key as the identity than
username
.
Create a new login for the account identified by id
with creds
, an object
with username
and password
properties.
Return an array of rows that can be fed into level-create-batch.
Verify creds
, a username with username
and password
properties.
cb(err, success, id)
fires with any errors or a boolean success
and the
account identifier id
.
With npm do:
npm install accountdown-basic
MIT
FAQs
username/password authentication for accountdown using salted hashes
The npm package accountdown-basic receives a total of 0 weekly downloads. As such, accountdown-basic popularity was classified as not popular.
We found that accountdown-basic 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.