@zkochan/pnpm
Version:
A fast implementation of npm install
25 lines (14 loc) • 352 B
Markdown
Node core `fs` wrapped functions that return thunks for [co](https://github.com/visionmedia/co).
```
$ npm install co-fs
```
Use all the regular async fs functions without callback hell:
```js
var json = yield fs.readFile('package.json', 'utf8')
var files = yield fs.readdir('/tmp')
```
MIT