npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

engen

v0.1.8

Published

Async control flow using pure ES6 generators.

Downloads

30

Readme

Build Status

engen

The generator engine.

Async control flow using pure ES6 generators.

Requires ES6 generator support. Tested on Node 0.12 with the --harmony flag.

Async code based on yield

With generators, calling an asynchronous function and waiting for its result is as simple as calling yield f(). Parameters and return values work exactly as if the code were synchronous.

var g = require('engen');

function *c(x) {
  yield g.wait(1000);
  return x;
}

function *b() {
  return yield c('b'); // takes 1000ms
}

function *a() {
  var b = yield b();
  return 'a' + b;
}

g.run(a(), function(err, res) {
  console.log(err); // null
  console.log(res); // 'ab'
});

Yielding an array of generators will run them in parallel and return an array of ordered results.

var g = require('engen');

function *a() {
  yield g.wait(1000);
  return 'a';
}

function *b() {
  yield g.wait(2000);
  return 'b';
}

function *f() {
  return yield [a(), b()]; // takes 2000ms
}

g.run(f(), function(err, res) {
  console.log(err); // null
  console.log(res); // ['a', 'b']
});

Yielding an object of generators behaves identically to yielding an array, but the resulting value is an object.

var g = require('engen');

function *a() {
  yield g.wait(1000);
  return 'a';
}

function *b() {
  yield g.wait(2000);
  return 'b';
}

function *f() {
  return yield {a: a(), b: b()}; // takes 2000ms
}

g.run(f(), function(err, res) {
  console.log(err); // null
  console.log(res); // {a: 'a', b: 'b'}
});

Inside collections, mixing generators and simple values is allowed. Generators will be waited for, anything else will be passed through untouched.

Note: this includes objects and arrays: be careful not to nest collections of generators.

var g = require('engen');

function *a() {
  yield g.wait(1000);
  return 'a';
}

function *f() {
  return yield [a(), false, null, {}];
}

g.run(f(), function(err, res) {
  console.log(err); // null
  console.log(res); // ['a', false, null, {}];
});

Exceptions also behave as if the code were synchronous:

var g = require('engen');

function *b() {
  yield g.wait(1000);
  throw Error('oops');
}

function *a() {
  try {
    yield b(); // takes 1000ms
  } catch(err) {
    console.log(err) // 'Error: oops'
  }
  return 'a';
}

g.run(a(), function(err, res) {
  console.log(err); // null
});

g.run(b(), function(err, res) {
  console.log(err); // 'Error: oops'
});

API

engen.run()

Run generator based code from callback-land.

var g = require('engen');

function *f() {
  yield g.wait(2000);
  return 'done';
}

g.run(f(), function(err, result) {
  console.log(err); // null
  console.log(result); // 'done'
});

engen.wrap()

Wrap callback-style code and call it from generator-land.

var g = require('engen');
var readFile = g.wrap(require('fs').readFile);

function *f() {
  yield g.wait(1000);
  return yield readFile('test.js');
}

g.run(f(), function(err, res) {
  console.log(err); // null
  console.log(res); // <Buffer ...>
});

By default, wrap() expects callbacks to have the standard Node signature:

function(error, result) {}

To wrap an unusual callback, you can pass in a function as a second parameter to wrap() to perform custom handling of the callback parameters.

To handle multiple return values and return them as an array:

var g = require('engen');

var f = g.wrap(function(cb) {
  cb(err, 12, 34, 56);
}, function(err, a, b, c) {
  if (err) throw err;
  return [a, b, c];
});

To handle callbacks without an err parameter:

var g = require('engen');

var f = g.wrap(function(cb) {
  cb(12, 34, 56);
}, function(a, b, c) {
  return [a, b, c];
});

For your convenience, these two handlers are built in, as g.multipleReturnCallback and g.noErrorCallback.

engen.wait()

Generator-based version of setTimeout, provided for convenience.

var g = require('engen');

function *f() {
  yield g.wait(1000); // pauses for 1000ms
  return 'done';
}

g.run(f());

License

MIT