0.1.3 • Published 3 years ago
coldenv v0.1.3
ColdEnv
Utility to encrypt and decrypt JSON file for .env assembly
Installation
$ yarn add https://github.com/Cold927/coldenvHow to use
ColdEnv is created to help hide your development.json file that create .env and keep your data safe in group project.
For example, you have data about your database and server connections in your development.json like this:
{
"node": {
"env": "development"
},
"mongo": {
"host1": "127.0.0.1",
"port1": "8000",
"replica": false,
"user": "user",
"password": "password",
"database": "example_db",
"root": {
"user": "root",
"password": "root"
}
}
}You can encrypt your file with private.key to keep your data safe while share it to others.
Private key can be anything, just a word or UUID for example.private.key file must be in your root of the project directory.
Encrypt file
$ coldenv playground encryptThe encrypted file will be located in the root of the project with the name secret.txt.
Decrypt file
$ coldenv playground decryptFor decryption, the following files must be in the root of the project directory:
private.key- private keysecret.txt- encrypted data file
Author
License
ColdEnv is MIT licensed