1.26.0 • Published 10 months ago
user-manager v1.26.0
user-manager
Simple user manager for the people.
Creating the data store
const userManager = new UserManager({storeLocation: '~/Tests/user-manager-store/',});
Adding Alice
await userManager.userAdd('alice', {password:'hunter2', notes:[`${new Date()}: Account Creation`]});
Adding (Upserting) a Note to Alice's Account
let alice = await userManager.userGet('alice');
alice.notes.push(`${new Date()}: Customer called tech-support on Christmas Day, said "Cats are little people" and hung up.`);
await userManager.userSet(alice);
Account Modification, Adding a Field.
await userManager.userMod('alice', {email:'alice@example.com'});
LICENSE
GPLv3
1.26.0
10 months ago
1.25.0
1 year ago
1.22.0
2 years ago
1.23.0
2 years ago
1.24.0
2 years ago
1.21.0
2 years ago
1.20.0
3 years ago
1.15.0
3 years ago
1.19.0
3 years ago
1.18.0
3 years ago
1.17.0
3 years ago
1.16.0
3 years ago
1.14.0
3 years ago
1.13.0
3 years ago
1.12.0
3 years ago
1.11.0
3 years ago
1.10.0
4 years ago
1.9.0
5 years ago
1.8.0
6 years ago
1.7.0
6 years ago
1.6.0
6 years ago
1.5.0
6 years ago
1.4.0
6 years ago
1.3.0
6 years ago
1.2.0
6 years ago
1.1.0
6 years ago
1.0.2
8 years ago
1.0.1
8 years ago