Help developers discover the tools you use. Get visibility for your team's tech choices and contribute to the community's knowledge.
Build system automating tasks: minification and copying of all JavaScript files, static images. More capable of watching files to automatically rerun the task when a file changes. | Flow is a static type checker for Javascript created by Facebook. |
By preferring code over configuration, gulp keeps simple things simple and makes complex tasks manageable.;By harnessing the power of node's streams you get fast builds that don't write intermediary files to disk.;gulp's strict plugin guidelines assure plugins stay simple and work the way you expect.;With a minimal API surface, you can pick up gulp in no time. Your build works just like you envision it: a series of streaming pipes. | Type Inference; Easy Integration; Realtime Feedback |
Statistics | |
GitHub Stars 33.0K | GitHub Stars 22.2K |
GitHub Forks 4.2K | GitHub Forks 1.9K |
Stacks 15.3K | Stacks 145 |
Followers 9.1K | Followers 75 |
Votes 1.7K | Votes 0 |
Pros & Cons | |
Pros
| No community feedback yet |

It adds syntactic sugar inspired by Ruby, Python and Haskell in an effort to enhance JavaScript's brevity and readability. Specific additional features include list comprehension and de-structuring assignment.
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows to load parts for the application on demand. Through "loaders" modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

The less work you have to do when performing repetitive tasks like minification, compilation, unit testing, linting, etc, the easier your job becomes. After you've configured it, a task runner can do most of that mundane work for you—and your team—with basically zero effort.

TypeScript is a language for application-scale JavaScript development. It's a typed superset of JavaScript that compiles to plain JavaScript.

This project was formerly known as "Jade." Pug is a high performance template engine heavily influenced by Haml and implemented with JavaScript for Node.js and browsers.

Handlebars.js is an extension to the Mustache templating language created by Chris Wanstrath. Handlebars.js and Mustache are both logicless templating languages that keep the view and the code separated like we all know they should be.

Mustache is a logic-less template syntax. It can be used for HTML, config files, source code - anything. It works by expanding tags in a template using values provided in a hash or object. We call it "logic-less" because there are no if statements, else clauses, or for loops. Instead there are only tags. Some tags are replaced with a value, some nothing, and others a series of values.

Slim is a template language whose goal is to reduce the view syntax to the essential parts without becoming cryptic. It started as an exercise to see how much could be removed from a standard html template (<, >, closing tags, etc...). As more people took an interest in Slim, the functionality grew and so did the flexibility of the syntax.

Brunch is an assembler for HTML5 applications. It's agnostic to frameworks, libraries, programming, stylesheet & templating languages and backend technology.

Ractive was originally created at theguardian.com to produce news applications. Ractive takes your Mustache templates and transforms them into a lightweight representation of the DOM – then when your data changes, it intelligently updates the real DOM.