-
-
Save catalinpit/badc2a539a44412892a0e05a9575d54d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!'); | |
}); | |
const filePath = path.join(process.cwd(), 'content.txt'); | |
fs.readFile(filePath, (error, content) => { | |
if (error) throw error; | |
process.stdout.write(content); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment