Skip to content

Instantly share code, notes, and snippets.

@bgoonz
Created March 8, 2021 07:33
Show Gist options
  • Save bgoonz/8898ad673bd2ecee9d93f8ec267cf213 to your computer and use it in GitHub Desktop.
Save bgoonz/8898ad673bd2ecee9d93f8ec267cf213 to your computer and use it in GitHub Desktop.
// change-some-file.js
const fs = require("fs");
fs.writeFile("foo.txt", "Hello world!", "utf8", err => {
if (err) {
console.log(err);
}
console.log("write is complete");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment