Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Chocolate-Covered Vegetables: Tasty Workflows with Broccoli

Chocolate-Covered Vegetables: Tasty Workflows with Broccoli

Arguably, one of the best trends in software is that building it requires less and less overhead. While once developers used punch cards to perform even the most basic of mathematical calculations, we can now make changes to live web sites in a browser and see the results instantly. In this session, you'll learn how to use Broccoli, a blazingly-fast new asset pipeline tool, to dramatically cut down the time it takes to build for the web. We'll also explore other tools and methods that work well with Broccoli, and build the web workflow you've always hungered for.

timgthomas

March 02, 2015
Tweet

More Decks by timgthomas

Other Decks in Technology

Transcript

  1. USE

  2. CHAINING PLUGINS var doSomething = require(‘...’), doSomethingElse = require(‘...’); var

    app = ‘app’; app = doSomething(app); app = doSomethingElse(app); module.exports = app;
  3. “CONCAT” var concat = require('broccoli-concat'); module.exports = concat('js', { inputFiles:

    [ '**/*.js' ] }); app.js  scripts.js  vendor.js  › +