1.6.0 • Published 8 years ago

chainy-core v1.6.0

Weekly downloads
18
License
MIT
Repository
github
Last release
8 years ago

Perhaps the most awesome way of interacting with data using a chainable API

NPM

Browserify

Ender

Usage

Find the complete documentation for Chainy at the wiki

// chainy install set map swap
var Chainy = require('chainy-core').subclass().require('set', 'map', 'swap')
Chainy.create()
	.set(['some', 'data'])
	.map(function (item, next) {
		return next(null, item.toUpperCase())
	})
	.swap(function (item, next) {
		return next(null, item.join(' ') + '!')
	})
	.done(function (err, result) {
		if (err)  throw err
		console.log('result:', result)  // result: SOME DATA!
	})

Discover the release history by heading on over to the HISTORY.md file.

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

These amazing people are maintaining this project:

No sponsors yet! Will you be the first?

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Unless stated otherwise all works are:

and licensed under:

1.6.0

8 years ago

1.5.1

8 years ago

1.5.0

10 years ago

1.4.0

10 years ago

1.3.2

10 years ago

1.3.1

10 years ago

1.3.0

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.0.0

10 years ago