Write updates to a .env file
npm install update-dotenv> A NodeJS module to write updates to a .env file
```
npm install dotenv update-dotenv
`js
const updateDotenv = require('update-dotenv')
updateDotenv({
MY_VARIABLE: 'new value'
}).then((newEnv) => console.log('Done!', newEnv))
``