sync-fs
v1.0.1
Published
Synchronous version of the node.js fs module.
Downloads
8
Readme
sync-fs
Synchronous version of the node.js fs
module.
Replaces the functions that take result callbacks with synchronous ones.
Intended as the complement to then-fs for using with Concur.sync.
Installation
$ npm install sync-fs
API
The API for sync-fs
is like that of then-fs
module except that any function which normally returns a promise is synchronous instead.
Example:
function readJSON(path) {
return JSON.parse(fs.readFile(path, 'utf8'))
}
console.dir(readJSON(__dirname + '/package.json'))
License
MIT