bluelock
v1.0.3
Published
## Description BlueLock is a npm package created to **EASILY** manage secret values / env variables such as passwords or tokens.
Downloads
3
Readme
#BlueLock
Description
BlueLock is a npm package created to EASILY manage secret values / env variables such as passwords or tokens.
Examples
Terminal:
bl-set MyPW 1234
index.js:
const bl = require("BlueLock");
DB.SignIn(bl.Get(MyPW)); //Getting the value form the "vault" with bl.Get() and using the "Key" MyPW to specify wich value to fetch.
Commands
bl-set <key> <val> //Creates a value with a key.
bl-get <key> //Gets the value from the key.
bl-del <key> //Delets a value from the key.