Skip to content

Instantly share code, notes, and snippets.

@catalinpit
Created June 9, 2021 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catalinpit/571ba06c06214b5c8744036c6500af92 to your computer and use it in GitHub Desktop.
Save catalinpit/571ba06c06214b5c8744036c6500af92 to your computer and use it in GitHub Desktop.
const fs = require('fs');
const path = require('path');
fs.writeFile('content.txt', 'This is my first file!', (err) => {
if (err) {
throw err;
};
process.stdout.write('File created successfully!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment