SlideShare a Scribd company logo
brows·er·if·y
Javascript module management for mere mortals
My Application
jQuery
underscore
Application Code Library Code
My Application
jQuery
underscore
Application Code Library Code
Linker
My Application
jQuery
underscore
Application Code Library Code
global
variables
Module management with
globals
Modules individually included on the page
Share a global namespace
Inclusion order must be manually calculated
–browserify.org
“Browserify lets you
require('modules') in the browser
by bundling up all of your
dependencies.”
Module management with
browserify
Modules are scoped in their own namespace
Uses CommonJS standard interface
Dependencies defined using require function
Modules are defined by assigning an object to
module.exports
Exactly like node.js
var $ = require(‘jquery’);
$(‘body’).html(“Browserify saves the day”);
main.js
~/$ npm install jquery --save
~/$ browserify main.js -o bundle.js
Build process
var MyModel = function() {
…
}
module.exports = MyModel;
models/MyModel.js
var $ = require(‘jquery’),
_ = require(‘underscore’),
MyModel = require(‘../models/MyModel’);
main.js
Where to from here?
Detailed documentation: http://bit.ly/1kbozFB
grunt-browserify: wrapper for integration into Grunt
build with other tools, like uglify.
exorcist: extract source maps for browsers. Very useful,
terrible name.
watchify: CLI file watcher for performing automatic
builds during development.
Any questions?

More Related Content

PDF
Browserify
PDF
JavaScript Dependencies, Modules & Browserify
KEY
Requirejs
PDF
Requirejs
PDF
Integrating Browserify with Sprockets
PPSX
RequireJS
PDF
PPT
Managing JavaScript Dependencies With RequireJS
Browserify
JavaScript Dependencies, Modules & Browserify
Requirejs
Requirejs
Integrating Browserify with Sprockets
RequireJS
Managing JavaScript Dependencies With RequireJS

What's hot (20)

PDF
Packing it all: JavaScript module bundling from 2000 to now
PPTX
An Intro into webpack
PPTX
Asynchronous Module Definition (AMD) used for Dependency Injection (DI) and MVVM
PPTX
uRequire@greecejs: An introduction to http://uRequire.org
PDF
Once upon a time, there were css, js and server-side rendering
PDF
Javascript ui for rest services
PPTX
Webpack Introduction
PDF
Vue 淺談前端建置工具
PDF
Webpack Tutorial, Uppsala JS
PPTX
Webpack
ODP
An Introduction to Vuejs
PDF
OUTDATED (Encore)
PPTX
Backbone.js
PDF
Webpack DevTalk
PDF
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
PPTX
Vue business first
PPTX
SPTechCon Boston 2015 - Whither SPServices?
PPTX
Require js
PDF
Vue.js is boring - and that's a good thing
KEY
Rails3 asset-pipeline
Packing it all: JavaScript module bundling from 2000 to now
An Intro into webpack
Asynchronous Module Definition (AMD) used for Dependency Injection (DI) and MVVM
uRequire@greecejs: An introduction to http://uRequire.org
Once upon a time, there were css, js and server-side rendering
Javascript ui for rest services
Webpack Introduction
Vue 淺談前端建置工具
Webpack Tutorial, Uppsala JS
Webpack
An Introduction to Vuejs
OUTDATED (Encore)
Backbone.js
Webpack DevTalk
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
Vue business first
SPTechCon Boston 2015 - Whither SPServices?
Require js
Vue.js is boring - and that's a good thing
Rails3 asset-pipeline
Ad

Viewers also liked (9)

PDF
05 Web Services
PDF
Get Pumped for the HTML 5 Gamepad API
PDF
Web development tools { starter pack }
PDF
02 Introduction to Javascript
PPTX
CSS Selectors: element, class, id
PDF
04 Advanced Javascript
PDF
1st npm
PDF
Designing Modules for the Browser and Node with Browserify
PDF
Building testable chrome extensions
05 Web Services
Get Pumped for the HTML 5 Gamepad API
Web development tools { starter pack }
02 Introduction to Javascript
CSS Selectors: element, class, id
04 Advanced Javascript
1st npm
Designing Modules for the Browser and Node with Browserify
Building testable chrome extensions
Ad

Recently uploaded (20)

PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
Introduction to Artificial Intelligence
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
AI in Product Development-omnex systems
PPT
Introduction Database Management System for Course Database
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Digital Strategies for Manufacturing Companies
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
top salesforce developer skills in 2025.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
How to Choose the Right IT Partner for Your Business in Malaysia
Odoo Companies in India – Driving Business Transformation.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Introduction to Artificial Intelligence
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
AI in Product Development-omnex systems
Introduction Database Management System for Course Database
How to Migrate SBCGlobal Email to Yahoo Easily
Upgrade and Innovation Strategies for SAP ERP Customers
Which alternative to Crystal Reports is best for small or large businesses.pdf
ISO 45001 Occupational Health and Safety Management System
Digital Strategies for Manufacturing Companies
Odoo POS Development Services by CandidRoot Solutions
VVF-Customer-Presentation2025-Ver1.9.pptx
PTS Company Brochure 2025 (1).pdf.......
How Creative Agencies Leverage Project Management Software.pdf
top salesforce developer skills in 2025.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx

Lightning Talk: Making JS better with Browserify