The code from the Learn JavaScript the Hard Way module JavaScript Level 1 exercises. This is a mirror of the code I have in the book, so if you're struggling you can use this to compare against your attempts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
307 B

// https://nodejs.org/api/fs.html
const fs = require("fs");
let contents = fs.readFileSync("test.txt");
console.log("Contents:");
console.log(contents.toString());
// using a callback
console.log("----------------------");
fs.readFile("test.txt", (err, data) => {
console.log(data.toString());
});