Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

asynx

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asynx

Async utility extensions

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Async extensions

Adds several utilities on top of async.js. Aimed to be used as drop-in replacement:

var async = require('asynx');
// or be more explicit
var asynx = require('asynx');

Installation

npm install asynx

Usage

asynx.return(results..., callback)

Hijack callback into returning predefined result(s). Error is propagated unchanged.

asynx.waterfall([
    // get response and body of an url
    asynx.apply(request.get, url),
    // write body to file, but return http response from waterfall
    function (response, body, callback) {
        fs.writefile(filename, asynx.return(response, callback))
    }
], callback)

asynx.shift

asynx.waterfall([
    // get response and body of an url
    asynx.apply(request.get, url),
    // throw away response and pass body to fs.writeFile
    asynx.shift,
    // write body to a file
    asynx.apply(fs.writeFile, filename)
], callback)

asynx.if(test, then, else)

function cachedGet(url, callback) {
    var filename = __dirname + '/cache/' + url.replace(/\//g, '#');

    asynx.if(
        asynx.apply(fs.exists, filename),
        asynx.apply(fs.readFile, filename),
        asynx.apply(asynx.waterfall, [
            asynx.apply(request, url),
            function (response, body, callback) {
                fs.writeFile(filename, body, function (error) {
                    callback(error, body);
                });
            }
        ]),
        callback
    )
}

asynx.manual(states, callback)

function cachedGet(url, callback) {
    var filename = __dirname + '/cache/' + url.replace(/\//g, '#');

    asynx.manual({
        // always starts from 'start' state
        start: function (next) {
            fs.exists(filename, function (exists) {
                // go to some new state
                if (exists) next.readCache()
                else next.request();
            });
        },
        request: function (next) {
            // use state transition as callback
            request(url, next.writeCache);
        },
        readCache: function (next) {
            // use next.end to leave state machine
            fs.readFile(filename, 'utf-8', next.end);
        },
        writeCache: function (response, body, next) {
            fs.writeFile(filename, body, 'utf-8', function (error) {
                next.end(error, body);
            });
        }
    }, callback);
}

Keywords

FAQs

Package last updated on 22 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc