Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Read directory async (readdir)

  • readdir
const fs = require('fs')

fs.readdir('.', function (err, things) {
    console.log(things)
});