All Projects → warlock → spellbook

warlock / spellbook

Licence: MIT license
Functional library for Javascript

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to spellbook

Rubico
[a]synchronous functional programming
Stars: ✭ 133 (+850%)
Mutual labels:  asynchronous, iterator, parallel
cephgeorep
An efficient unidirectional remote backup daemon for CephFS.
Stars: ✭ 27 (+92.86%)
Mutual labels:  asynchronous, parallel
do
Simplest way to manage asynchronicity
Stars: ✭ 33 (+135.71%)
Mutual labels:  asynchronous, parallel
Asyncro
⛵️ Beautiful Array utilities for ESnext async/await ~
Stars: ✭ 487 (+3378.57%)
Mutual labels:  asynchronous, parallel
Curl Easy
cURL wrapper for PHP. Supports parallel and non-blocking requests. For high speed crawling, see stil/curl-robot
Stars: ✭ 297 (+2021.43%)
Mutual labels:  asynchronous, parallel
Galaxy
Galaxy is an asynchronous parallel visualization ray tracer for performant rendering in distributed computing environments. Galaxy builds upon Intel OSPRay and Intel Embree, including ray queueing and sending logic inspired by TACC GraviT.
Stars: ✭ 18 (+28.57%)
Mutual labels:  asynchronous, parallel
Cloe
Cloe programming language
Stars: ✭ 398 (+2742.86%)
Mutual labels:  asynchronous, parallel
asynckit
Minimal async jobs utility library, with streams support
Stars: ✭ 21 (+50%)
Mutual labels:  iterator, parallel
Read Multiple Files
Read multiple files Observable way
Stars: ✭ 13 (-7.14%)
Mutual labels:  asynchronous, parallel
Index
Metarhia educational program index 📖
Stars: ✭ 2,045 (+14507.14%)
Mutual labels:  asynchronous, parallel
Parallel Ssh
Asynchronous parallel SSH client library.
Stars: ✭ 864 (+6071.43%)
Mutual labels:  asynchronous, parallel
Metasync
Asynchronous Programming Library for JavaScript & Node.js
Stars: ✭ 164 (+1071.43%)
Mutual labels:  asynchronous, parallel
Future.apply
🚀 R package: future.apply - Apply Function to Elements in Parallel using Futures
Stars: ✭ 159 (+1035.71%)
Mutual labels:  asynchronous, parallel
AsyncIterator
An asynchronous iterator library for advanced object pipelines in JavaScript
Stars: ✭ 43 (+207.14%)
Mutual labels:  asynchronous, iterator
esa-httpclient
An asynchronous event-driven HTTP client based on netty.
Stars: ✭ 82 (+485.71%)
Mutual labels:  asynchronous
ssdp-client
The most lightweight asynchronous Java SSDP (Simple Service Discovery Protocol) Client
Stars: ✭ 46 (+228.57%)
Mutual labels:  asynchronous
AsyncSuffix
Asynchronous methods naming checker for ReSharper
Stars: ✭ 19 (+35.71%)
Mutual labels:  asynchronous
await
28Kb, small memory footprint, single binary that run list of commands in parallel and waits for their termination
Stars: ✭ 73 (+421.43%)
Mutual labels:  parallel
betterator
💯 A better sync and async iterator API.
Stars: ✭ 57 (+307.14%)
Mutual labels:  iterator
fetch-action-creator
Fetches using standardized, four-part asynchronous actions for redux-thunk.
Stars: ✭ 28 (+100%)
Mutual labels:  asynchronous

Spellbook

Functional and asynchronous conjurations for Javascript

http://spellbook.js.gl

npm version GitHub version Build Status Known Vulnerabilities

INSTALL/DOWNLOAD

npm install spellbook -S

MINIFIED CDN

https://cdn.jsdelivr.net/npm/spellbook@latest/spellbook.js

NPM URL

http://npmjs.com/package/spellbook

GIT URL

https://github.com/warlock/spellbook

Node.Js : Import module:

const sb = require("spellbook")

Web : Import module:

<script src="spellbook/spellbook.js"></script>
<script>
const res = sb.chain([{ a: 'hi', b: 3 }, { a: "hello", b: 3 }, { a: "bye", b: 2 }])
.filter({ b : 3 })
.first()
.get('a')
.toUpperCase()
.return()

console.log(res)
</script>

License

The MIT License (MIT) Copyright (c) 2015 Josep Subils ([email protected])

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].