Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteor/blaze
:fire: Meteor Blaze is a powerful library for creating live-updating user interfaces
https://github.com/meteor/blaze
blaze hacktoberfest meteor meteor-package reactive-templates
Last synced: about 1 month ago
JSON representation
:fire: Meteor Blaze is a powerful library for creating live-updating user interfaces
- Host: GitHub
- URL: https://github.com/meteor/blaze
- Owner: meteor
- License: other
- Created: 2016-02-22T22:05:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T08:30:18.000Z (6 months ago)
- Last Synced: 2024-05-23T04:50:54.225Z (6 months ago)
- Topics: blaze, hacktoberfest, meteor, meteor-package, reactive-templates
- Language: JavaScript
- Homepage: http://blazejs.org/
- Size: 6.34 MB
- Stars: 526
- Watchers: 47
- Forks: 113
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-blaze - GitHub Repo
README
## What is Blaze?
Blaze is a powerful library for creating user interfaces by writing reactive HTML templates. Compared to using a combination of traditional templates and jQuery, Blaze eliminates the need for all the "update logic" in your app that listens for data changes and manipulates the DOM. Instead, familiar template directives like ``{{#if}}`` and ``{{#each}}`` integrate with [Tracker's](https://github.com/meteor/meteor/tree/master/packages/tracker) "transparent reactivity" and [Minimongo's](https://meteor.com/mini-databases) database cursors so that the DOM updates automatically.
### Blaze has two major parts:
* A template compiler that compiles template files into JavaScript code that runs against the Blaze runtime library. Moreover, Blaze provides a compiler toolchain (think LLVM) that can be used to support arbitrary template syntaxes. The flagship template syntax is Spacebars, a variant of Handlebars, but a community alternative based on Jade is already in use by many apps.
* A reactive DOM engine that builds and manages the DOM at runtime, invoked via templates or directly from the app, which features reactively updating regions, lists, and attributes; event delegation; and many callbacks and hooks to aid the app developer.
Check our [Overview](OVERVIEW.md) to learn more.
## Quick Start
Blaze is a [Meteor](http://meteor.com/)-only package for now. Soon we will have Blaze on npm so you can use it in your stack.
Each new Meteor project you create has Blaze included (the `blaze-html-templates` package).
## Get involved
We'd love for you to help us build Blaze. If you'd like to be a contributor,
check out our [contributing guide](/CONTRIBUTING.md).Also, to stay up-to-date on all Blaze related news and the community you should
definitely [join us on Slack](http://slack.blazejs.org).See [open issues](https://github.com/meteor/blaze/issues) and consider helping with any of the tasks. Those [labeled "contributions welcome"](https://github.com/meteor/blaze/issues?q=is%3Aopen+is%3Aissue+label%3A%22contributions+welcome%22) are probably a good start. We have issues [organized into GitHub projects](https://github.com/meteor/blaze/projects) for a better overview as well. And the current [roadmap](https://github.com/meteor/blaze/milestones) shows the issues we need help with for the next release.
## Backers
Support us with a monthly donation and help us continue our activities. [Become a backer](https://opencollective.com/blaze#backer).
## Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor](https://opencollective.com/blaze#sponsor).
## License
Blaze is available under the MIT license.