Skip to content

Instantly share code, notes, and snippets.

@bennycode
Last active May 6, 2024 11:29
Show Gist options
  • Save bennycode/c400728536488b66c67b3a179189412c to your computer and use it in GitHub Desktop.
Save bennycode/c400728536488b66c67b3a179189412c to your computer and use it in GitHub Desktop.
Dump text into JSON file (Node.js)
const payload = {name: 'text'};
(require('fs')).writeFileSync(`dump-${Date.now()}.json`, JSON.stringify(payload));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment