mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 10:01:30 -04:00
314 B
314 B
update-dotenv
A NodeJS module to write updates to a .env file
Installation
npm install dotenv update-dotenv
Usage
const updateDotenv = require('update-dotenv')
updateDotenv({
MY_VARIABLE: 'new value'
}).then((newEnv) => console.log('Done!', newEnv))