From e9095bcd6c353538d6f6efe81d4997c79a075512 Mon Sep 17 00:00:00 2001
From: hendrik swanepoel These articles give a great introduction to using Browserify.
Introductions / Browserify basics
Browserify Handbook
@@ -46,7 +46,7 @@
The basics of writing modules for the browser using node.js core modules and modules from npm.
- +A straightforward introduction to browserify, including integration with Grunt and Gulp.
- +benclinkinbeard.com/posts/how-browserify-works/
A basic introduction to how Browserify does what it does.
- - + +A detailed introduction to Browserify and Grunt.js and how to leverage Browserify to write code that runs on Node.js and in the browser.
- +dontkry.com/posts/code/using-npm-on-the-client-side.html
A very thorough introduction to using npm, Browserify, and Grunt.js.
- +Slides for introducing front-end people NPM, Browserify and their benefits.
- +blakeembrey.com/articles/introduction-to-browserify
Another great look at the basics of Browserify.
- +A rundown of projects that have made developing with browserify more accessible and more interesting: requirebin.com, npmsearch.com, and Browserify CDN.
- +An awesome look at the possibilities for using Browserify to bundle modules written in AMD, CommonJS/node.js, UMD, ECMAscript 6, and global modules.
- +Particularly interesting for people using Browserify as part of the development workflow on a javascript library, check out this article for learning how to generate standalone Browserify builds.
- +smalljs.org/package-managers/npm/browserify/
Yet another introductory article about Browserify. Covers basic workflow, transforms, source maps, automation, RequireBin, and how to play nice with popular frameworks.
- +For examples of using browserify with various javascript libraries, check out these articles.
- - + +aeflash.com/2014-03/a-year-with-browserify.html
"Along the way, I've learned a lot about the whole Browserify process, some tricks, and some pitfalls."
- - + +Using angular.js with browserify is suprisingly straightforward as shown in this post.
- +Leaflet.js is a great mapping library, and this tutorial shows how you can use it with browserify.
- +learnjs.io/blog/2013/11/23/backbone-jquery-browserify
An introduction to using backbone and jquery with browserify.
- +codeofrob.com/entries/grunt+browserify+npm+application=success.html
A good rundown of using Grunt.js with Browserify.
- +http://viget.com/extend/gulp-browserify-starter-faq
-How to start an application with gulp and browserify, including a +
How to start an application with gulp and browserify, including a starter repo
Browserify fits in well with other development tools. Check out some of the ones most commonly used with Browserify.
- +Beefy is a great tool for running a development server that will automatically reload the browser and serve a newly generated bundle.js file each time you save a project file.
- +github.com/jmreidy/grunt-browserify
A plugin for using browserify with grunt.
- +Canvas-based game engine and toolchain optimized for rapid development. Chem uses browserify to compile your code. Check out some of the useful npm packages for games.
- +Browserify is used primarily with npm. Both of those tools have similar counterparts like Bower and RequireJS. These articles help explain some of the differences.
- +esa-matti.suuronen.org/blog/2013/03/22/journey-from-requirejs-to-browserify
A thorough explanation of switching from RequireJS to Browserify.
- +A series of posts exploring package managers for client side code. Includes npm/Browserify.
- +superbigtree.tumblr.com/post/58075340096/my-strategy-for-client-side-package-managers-choosing
Exploring the differences between npm, bower, and component.
- +www.forbeslindesay.co.uk/post/44144487088/browserify-vs-component
A comparison of Browserify and Component.
- +github.com/substack/node-browserify#browserify
Read the Browserify docs! Also check out the issues.
- +To write modules for the browser using Browserify, you'll use the node.js module system, and it's a good idea to check out the code node.js module documentation.
- +npmjs.org/browse/keyword/browserify
Check out the modules tagged with browserify on npm.
- +stackoverflow.com/questions/tagged/browserify
Check out the questions being asked about Browserify on StackOverflow.
- +Creator of Browserify James Halliday (@substack) gives a rundown of the changes that came through in version 2 of the project.
- + +http://tagtree.tv/browserify-an-intro?share_code=uncoopered-inspirer +
+A free 5 minute tagtree.tv screencast tutorial that introduces you to browserify in it's simplest form.
+ +http://tagtree.tv/browserify-automation?share_code=microwave-waterfall +
+Another free 5 minute tagtree.tv tutorial, this one is about automating browserify compilation. First it shows you how to use watchify, then quickly moves on to using express middleware.
+ericleads.com/2014/03/modular-javascript-with-npm-and-node-modules
Eric Elliot recorded this screencast version of a talk he gave about using modules to write JS programs.
- +Write unit tests that work in node and the browser.
- +