1.0.1 • Published 10 years ago

sync-fs v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
10 years ago

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