0.1.5 • Published 6 years ago

init-node-env v0.1.5

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

init-node-env

  • Initialize a few essential initialization to the node app to support multi-environment .env files.

use

install

# if you use `yarn`
yarn global add init-node-env
# if you use `npm`
npm install -g init-node-env

from the root of the project you'd like to initialize

init-node-env $PWD

about

1. environment types

  • local
    • for seat-specific environments.
  • test
    • for integration/unit tests environments.
  • develop
    • for remotely deployed servers to share the development servers among the internal developers.
  • master
    • for QAing and staging before production.
  • production
    • for production release to be used by real users.

2. encrypted and decrypted

  • For security, we're encrypting each .env files using aes-256-cbc.
  • When using the .env files, we decypt them. The passwords to decrypt environments should be shared amongst the authorized team members safely.

3. filenames

  • .env
    • has the highest precendences to use this environment.
    • NOT intended to be modified directly; this file must be the derived product during the build (e.g. by Jenkins build server).
  • .env.(local|test|develop|master|production).(encrypted|decrypted)

4. husky hook

  • triggers automatic encryption and rename of the files from .env.(local|test|develop|master|production).decrypted to .env.(local|test|develop|master|production).encrypted.

5. .gitignore

  • must include .env.*.decrypted and .env as these files may contain sensitive data.

TODO

  • validator in the precommit if init-node-app is installed correctly.
  • improve README.md with why, how
0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.12

6 years ago

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago