Node

set(KEY, value, {plain: true})

Programmatically set a plaintext environment variable.

Usage

// index.js
const dotenvx = require('@dotenvx/dotenvx')

async function main() {
  await dotenvx.set('HELLO', 'World', { plain: true })
}

main()