Advanced dotenvx.set(KEY, value, {plain:}) Programmatically set a plaintext environment variable. // index.js const dotenvx = require('@dotenvx/dotenvx') async function main() { await dotenvx.set('HELLO', 'World', { plain: true }) } main() CopyCopied!