Home

Awesome

Vomit

Build Status Gitter NPM Downloads pledge

vomit

Vomit is a JavaScript library for building stateless user interfaces.

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

<!--- Check out our [5 minutes getting started](https://github.com/bredele/vomit/blob/master/doc/getting-started.md)! -->

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:

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 <a href="https://github.com/bredele/contributing-guide/blob/master/community.md" target="_blank">community guideline</a> 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 <a href="https://github.com/bredele/contributing-guide/blob/master/community.md" target="_blank">guideline</a> 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.