watch-env

0.11.0 • Public • Published

watch-env

A utility to convert .env file into ./src/initEnv.js that can be included in your front end code so the back end and front end can share project wide constants.


How to use:

run once

npx watch-env

run in the background watching for changes in .env file and creating ./src/initEnv.js

npx watch-env --watch &

Examples of using in you project's package.json:

    "prep": "npx watch-env",
    "watch": "npx watch-env --watch &",
    
    "build": "run-s prep webpack"
    "front": "webpack serve",
    "back": "cd server && ./start.sh",

    "start": "run-s watch back front",
    "prod": "run-s build back"

/watch-env/

    Package Sidebar

    Install

    npm i watch-env

    Weekly Downloads

    1

    Version

    0.11.0

    License

    MIT

    Unpacked Size

    9.94 kB

    Total Files

    8

    Last publish

    Collaborators

    • martinjackson