proteo

1.0.0 • Public • Published

proteo

In Greek mythology, Proteo is a god of the sea that can take any form.

The library allows to obtain metaprogrammed structures to easily imitate existing apis

Installation

$ npm install --save proteo

Usage

const proteo = require("proteo")
const api = proteo()
api.a.b().c.d()
const rx = proteo({
  when: prop => prop === "subscribe",
  value: prop => next => next(6)
})
 
rx.Observable.from([1, 2])
  .map(double)
  .reduce(add)
  .subscribe(n => console.log(n)) // 6
 
console.log(rx.calls.get())
/*
 
{
  map: [[double]],
  reduce: [[add]]
}
 
*/
const res = proteo({
  when: prop => prop === "send",
  value: prop => data => data
})
 
res.status(200).send({ data: true })
 
console.log(rx.calls.get())
/*
{
  status: [[200]],
  send: [[{ data: true }]]
}
*/

Options

 
const api = proteo({
  when: (prop) => prop === "finish" // condition to stop chain
  value: () => true // value returned
  store: "customName" // name for store calls
})
 
api.a.b().c.finish // true
api.customName.get() // get calla
api.customName.clear() // clear calls
 
 

License

MIT © Maurice Domínguez

Package Sidebar

Install

npm i proteo

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

7.29 kB

Total Files

6

Last publish

Collaborators

  • madoos