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

ioperator

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ioperator

Helps separate your logic from your Input Output operations.

  • 2.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ioperator

Helps separate your logic from your Input Output operations.

Examples of IO operations are HTTP requests, file system requests, database requests, and generally any functions that have side effects. Functions with side effects are hard to test because they are usually not repeatable.

Keeping your logic pure (free of side-effects) makes it much easier to test, and more generally much easier ot reason about.

ioperater is heavily influenced by Haskell's treatment of IO - Your pure functions describe what needs to be done by returning an IO value. They never perform IO by themselves.

Build Status

Install: npm install --save ioperator

Try it out live: https://runkit.com/pokle/ioperator-example

Quick example

Instead of passing dependencies to your functions, instead arrange for them return:

  • A description of what IO operation they would like carried out.
  • What to do after the IO operation has completed.

For example:

function lowerCaseInput() {
    return { io: 'read-file', file: '/etc/hosts', then: (str) => str.toLowerCase() }
}

So how do you run this? Check out the full example at examples/lowercase-file.js

Why?

Functions that perform input & output operations are usually quite hard to test. (As opposed to pure functions)

  • You might use mocking techniques - painful.
  • You might use dependency injection (to inject mocks and genuine implementations)

Dependency injection can be problematic because you have to pass your dependencies all the way through your function call hierarchy. With ioperator, your functions compose easier because you're never passing down dependencies.

Influences

Release process

npm test
npm version major | minor | patch...
git push
npm publish

FAQs

Package last updated on 06 Nov 2017

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