All Projects β†’ bredele β†’ Vomit

bredele / Vomit

Licence: mit
😷 A minimal high order function for building user interfaces

Programming Languages

javascript
184084 projects - #8 most used programming language
es6
455 projects

Labels

Projects that are alternatives of or similar to Vomit

Audio player flutter
🎧 Apple Music / Tidal Audio Player for Flutter
Stars: ✭ 52 (-66.01%)
Mutual labels:  streams
Fuego
Functional Experiment in Golang
Stars: ✭ 87 (-43.14%)
Mutual labels:  streams
Parquet4s
Read and write Parquet in Scala. Use Scala classes as schema. No need to start a cluster.
Stars: ✭ 125 (-18.3%)
Mutual labels:  streams
Staged Streams.scala
Stars: ✭ 55 (-64.05%)
Mutual labels:  streams
Cyclops
An advanced, but easy to use, platform for writing functional applications in Java 8.
Stars: ✭ 1,180 (+671.24%)
Mutual labels:  streams
Datum
pure functional and generic programming for Erlang
Stars: ✭ 111 (-27.45%)
Mutual labels:  streams
Go Transcode
Live on-demand transcoding in go using ffmpeg. Also with NVIDIA GPU hardware acceleration.
Stars: ✭ 39 (-74.51%)
Mutual labels:  streams
Asynquence
Asynchronous flow control (promises, generators, observables, CSP, etc)
Stars: ✭ 1,737 (+1035.29%)
Mutual labels:  streams
Websocketstream Explainer
Explainer for the WebSocketStream JavaScript API
Stars: ✭ 75 (-50.98%)
Mutual labels:  streams
Clamscan
A robust ClamAV virus scanning library supporting scanning files, directories, and streams with local sockets, local/remote TCP, and local clamscan/clamdscan binaries (with failover).
Stars: ✭ 121 (-20.92%)
Mutual labels:  streams
Cypher Stream
Neo4j Cypher queries as Node.js object streams
Stars: ✭ 58 (-62.09%)
Mutual labels:  streams
Bob
🚰 binary data "streams+" via data producers, data consumers, and pull flow.
Stars: ✭ 68 (-55.56%)
Mutual labels:  streams
Rxjs In Action
Code sample repository
Stars: ✭ 117 (-23.53%)
Mutual labels:  streams
Stream Splicer
streaming pipeline with a mutable configuration
Stars: ✭ 52 (-66.01%)
Mutual labels:  streams
Multiple Counters Flutter
Flutter State Management [ setState ❖ StreamBuilder ❖ scoped_model ❖ redux ]
Stars: ✭ 131 (-14.38%)
Mutual labels:  streams
Delta Architecture
Streaming data changes to a Data Lake with Debezium and Delta LakeΒ pipeline
Stars: ✭ 43 (-71.9%)
Mutual labels:  streams
Php Fetch
A simple, type-safe, zero dependency port of the javascript fetch WebApi for PHP
Stars: ✭ 95 (-37.91%)
Mutual labels:  streams
Umbrella
"A collection of functional programming libraries that can be composed together. Unlike a framework, thi.ng is a suite of instruments and you (the user) must be the composer of. Geared towards versatility, not any specific type of music." β€” @loganpowell via Twitter
Stars: ✭ 2,186 (+1328.76%)
Mutual labels:  streams
Redux Most
Most.js based middleware for Redux. Handle async actions with monadic streams & reactive programming.
Stars: ✭ 137 (-10.46%)
Mutual labels:  streams
Tailor
A streaming layout service for front-end microservices
Stars: ✭ 1,640 (+971.9%)
Mutual labels:  streams

Vomit

Build Status Gitter NPM Downloads pledge

vomit

Vomit is a JavaScript library for building stateless user interfaces.

  • Declarative: Vomit leverages JavaScript template strings to create interactive UIs. Logic is written in JavaScript instead of templates, making your code more predictable, simple to understand and easier to debug.
  • Component-Based: Build encapsulated components and compose them to make complex UIs. Everything is as simple as a function call!
  • Async: Vomit has been built with promises and streams at its core. Dealing with IO bounds has never been so easy!
  • Easy to learn: Simple is better! We don't make any assumptions about your coding style or technology stack. 5 minutes are enough to learn Vomit!

Try it online!

Usage

var vomit = require('vomit')

function stopwatch(start) {
  // create timer dynamic component
  var timer = vomit(clock)

  // update timer dom element every second
  setInterval(() => timer(++start), 1000)

  // return timer dom element
  return timer(start)
}

// create timer static component
function clock(seconds) {
  return vomit`<div>Seconds Elapsed: ${seconds}</div>`
}

document.body.appendChild(stopwatch(0));

Vomit does not force you into any syntax/API but instead uses the power of JavaScript template literals built in your browser. Quickly create DOM element that you can compose with Objects, Arrays, other DOM elements, Functions, Promises and even Streams.

Check out examples and docs for more information.

Installation

npm install vomit --save

NPM

Features

Vomit stands for Virtual dOM IT sucks and ironically uses a virtual dom strategy based on real DOM to efficiently update your components . Other features are:

  • Separate and optimize rendering of static and dynamic content
  • HTML5 Web Component
  • Server side rendering (check out steroid)
  • Works with SVG
  • 3kb minified + gzipped, ideal for mobile and to include as dependency
  • Share the same core engine than the MVVM library brick

You'll find Vomit disgustingly easy to learn. Please check out our 5 minutes tutorial to get started,

Question

For questions and feedback please use the Gitter chat room or our twitter account. For support, bug reports and or feature requests please make sure to read our community guideline and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

Contribution

Vomit is an open source project and would not exist without its community. If you want to participate please make sure to read our guideline before making a pull request. If you have any vomit-related project, component or other let everyone know on our chat room or in our wiki.

License

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

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].