Socket
Socket
Sign inDemoInstall

always-thunk

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

always-thunk

Create thunk from async or sync function. Works like `thunkify`.


Version published
Maintainers
1
Created
Source

always-thunk npmjs.com The MIT License

Create thunk from async or sync function. Works like thunkify.

code climate standard code style travis build status coverage status dependency status

Install

npm i always-thunk --save
npm test

Usage

For more use-cases see the tests

var fs = require('fs')
var alwaysThunk = require('always-thunk')

var readFile = alwaysThunk(fs.readFile)
readFile('./package.json', 'utf8')(function (err, res) {
  console.log(err) //=> null
  console.log(res) //=> package.json content
})

var readFileSync = alwaysThunk(fs.readFileSync)
readFileSync('./package.json', 'utf8')(function (err, res) {
  console.log(err) //=> null
  console.log(res) //=> package.json content
})
  • always-promise: Create Bluebird Promise from given async or synchronous function. It automatically convert sync functions to async, then to promise.
  • always-callback: Create callback api for given sync function. Guarantee that given function (sync or async, no matter) will always have callback api and will handle errors correctly.
  • handle-callback: Make promise to have support for callback api, it returns promise in that same time.
  • make-callback: Make synchronous function to support callback api
  • promise2thunk: Convert (transform) promise to thunk, just like was in co@3

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckocore.tk keybase tunnckocore tunnckoCore npm tunnckoCore twitter tunnckoCore github

Keywords

FAQs

Package last updated on 05 Jun 2015

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