@acce/promise-fs

0.0.4 • Public • Published

Promise FS

This package provides a promise based wrapper around the node fs package. Essentially, it curries the callback function, and provides a promise in its place.

Currently this only supports a few simple interfaces, listed bellow.

  • mkdir
  • mkdtemp
  • lstat
  • readdir
  • readFile
  • writeFile
  • mkdtemp
  • rename
  • rmdir
  • unlink
  • remove

Example

let { writeFile } = require('@acce/promise-fs')

writeFile('./some.txt', 'foo bar', 'utf8')

	.then(() => do.something())
	.catch(e => console.error('Oh snap.', e))

Installing

npm i --save @acce/promise-fs

Contributing

Feel free to add extra modules, I'll merge where useful. I'm kinda slack so maybe fork?...

Readme

Keywords

none

Package Sidebar

Install

npm i @acce/promise-fs

Weekly Downloads

5

Version

0.0.4

License

ISC

Unpacked Size

1.67 kB

Total Files

3

Last publish

Collaborators

  • acce