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.
 

20 lines
599 B

const fs = require('fs').promises;
// you have to do nested calls any time you need the result of the previous calculation
const read_file = (fname) => {
fs.open(fname, 'r').then((fh) => {
fh.stat().then((stat) => {
let buf = Buffer.alloc(stat.size);
fh.read(buf, 0, stat.size, null)
.then((result) => {
console.log(`Read ${result.bytesRead} bytes: ${result.buffer.toString()}`);
}).catch((err) => {
console.error(err);
});
}).catch((err) => console.error(err));
}).catch((err) => console.error(err));
}
read_file('test.txt');