envis-node
v0.0.4
Published
Secure, simple secret management
Downloads
25
Maintainers
Readme
envis-node
Table of Contents
Overview
Envisible is a simple, secure secret management platform. The SDK allows users to integrate their secrets (configured on our web dashboard) directly into their Node.js code.
Installation
cd node-sdk
npm installUsage
- Sign up for an Envisible account on the dashboard.
- Install the SDK and authenticate when prompted (the SDK will open a secure browser window).
- Read and manage secrets from any Node.js runtime:
Fetching a secret
const envis = require("envis-node");
async function main() {
const secret = await envis.get("project_id", "secret_name");
console.log(secret);
}
main();Logging out
const envis = require("envis-node");
envis.logout();License
envis-node is released under a private source-available license: you can use the SDK to integrate with our web dashboard, but the backend platform remains proprietary.
