Skip to content

Instantly share code, notes, and snippets.

@mfrancois3k
Forked from HussainArif12/saveToFile.js
Last active May 29, 2022 06:43
Show Gist options
  • Save mfrancois3k/bb1568ea462127f4e230f75e15659c7e to your computer and use it in GitHub Desktop.
Save mfrancois3k/bb1568ea462127f4e230f75e15659c7e to your computer and use it in GitHub Desktop.
async function saveToFile(html) {
await fs.writeFile("./content.html", html, "utf-8");
console.log("file saved to " + process.cwd() + "/content.html");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment