Skip to content

An exploration of the Haskell IO patterns, in pure Javascript

Notifications You must be signed in to change notification settings

pokle/ioperator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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

Example

Head over to runkit to play with an example that lower cases files on the filesystem: https://runkit.com/pokle/ioperator-lowercase-file

About

An exploration of the Haskell IO patterns, in pure Javascript

Resources

Stars

Watchers

Forks

Packages

No packages published