0.3.2 • Published 8 years ago

node-promise-es6 v0.3.2

Weekly downloads
454
License
MIT
Repository
github
Last release
8 years ago

node-promise-es6

Build Status

ES6 promise adapters for the Node.js API for use with ES7 async/await.

Installing

node-promise-es6 is available as an npm package.

Usage

Wrapped APIs

fs

import {fs} from 'node-promise-es6';

async function run() {
  console.log(await fs.readdir('.'));
}

child_process

import {childProcess} from 'node-promise-es6';

async function run() {
  const {stdout, stderr} = await childProcess.exec('ls .');
  console.log(stdout, stderr);
}

Utilities

promisify

import {promisify} from 'node-promise-es6';

function callbackFn(x, y, callback) {
  callback(null, x, y);
}

async function run() {
  const promiseFn = promisify(callbackFn, ['x', 'y']);
  const {x, y} = await promiseFn(1, 2);
  console.log(x === 1 && y === 2);
}

A helper for wrapping Node.js-style callback-taking functions (error object as first argument) in a Promise API.

Development

Getting Started

The application requires the following external dependencies:

  • Node.js

The rest of the dependencies are handled through:

npm install

Run tests with:

npm test
0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.1.0

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago