This package has been deprecated

Author message:

The static-land package is not being maintained any more, please use fantasy-to-static package instead.

static-land

1.0.0 • Public • Published

Static Land

Specification for common algebraic types in JavaScript based on Fantasy Land.

Difference from Fantasy Land

Fantasy Land uses methods as a base for types. A type instance in Fantasy Land is an object with certain methods. For example a Functor type instance must be an object that has a map method.

In Static Land a type is just a collection of static functions, and instances of a type can be any values, including primitives (Number, Boolean, etc.)

For example we can implement an Addition type that uses numbers as its instances and satisfies the Monoid laws:

const Addition = {
 
  empty() {
    return 0
  },
 
  concat(a, b) {
    return a + b
  },
 
}

Pros

  • No name clashes. Since a type is just a collection of functions that don't share any namespace we don't have problems with name clashes.
  • We can implement many types for same values. For example we can implement two Monoids for numbers: Addition and Multiplication.
  • We can implement types with primitives (Number, Boolean, etc.) as values.
  • We can implement seamless types. For example we can make a type with arrays as values, and user won't have to wrap/unwrap values to some wrapper class with Fantasy Land methods.

Cons

  • We have to pass around types more often. In Fantasy Land some generic code can be written using only methods, we have to pass types only for of and empty. In Static Land we have to pass types for any generic code.

How to add compatibility with Static Land to your library

Simply expose some Type Objects that work with types that your library provides or with types defined in another library or with native types like Array.

Type Objects don't have to be simple JavaScript objects; they can also be constructors if desired. The only requirements are:

  • this object contains some static methods from Static Land; and
  • if it contains a method with one of the names that Static Land reserves, that method must be a Static Land method (obey laws etc.).

Example 1. Static Land type for Array

const SArray = {
 
  of(x) {
    return [x]
  },
 
  map(fn, arr) {
    return arr.map(fn)
  },
 
  chain(fn, arr) {
    // ...
  },
 
}
 
export {SArray}

Example 2. Static Land type as a Class

class MyType = {
 
  constructor() {
    // ...
  }
 
  someInstanceMethod() {
    // ...
  }
 
  static someNonStaticLandStaticMethod() {
    // ...
  }
 
 
  // Static Land methods
 
  static of(x) {
    // ...
  }
 
  static map(fn, value) {
    // ...
  }
 
}
 
export {MyType}

Compatible libraries

We have a list in the wiki. Feel free to add your library there.

Utils Build Status Coverage Status

We also have static-land package on npm that provides some useful utilities (not many at the moment).

Installation

npm install static-land
// modern JavaScript
import {fromFLType} from 'static-land'
 
// classic JavaScript
var fromFLType = require('static-land').fromFLType

Or using CDN:

<script src="https://unpkg.com/static-land/umd/staticLand.js"></script>
<script>
  var fromFLType = window.StaticLand.fromFLType
</script> 

Development

npm run lobot -- --help

Run lobot commands as npm run lobot -- args....

Readme

Keywords

none

Package Sidebar

Install

npm i static-land

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • pozadi