1.0.2 • Published 9 years ago

brequire v1.0.2

Weekly downloads
6
License
MIT
Repository
-
Last release
9 years ago

require

Dropin require polyfill for the browser

Really useful in development for when you don't want to crank up browserify.

Super simple.

Fully swappable with browserify and friends in production.

Installation

1) Include the script and serve it (it won't work direct from the filesystem due to browser security)

<script src='require.js'></script>

or use it direct from rawgit

<script src='//rawgit.com/weepy/brequire/master/require.js'></script>

2) Code like a boss

3) You can optionally include the PARSEJS library which will help point point any syntax errors in your code whilst

Compilers

You can add compilers for coffeescript, css, JSX or whatever in very simply by registering a handler like

require.compilers.css = function(text) {

    var style = document.createElement('style');
	style.appendChild(document.createTextNode(text));
	document.head.appendChild(style);
}

This will allow you to include css on page like :

require("./style.css")

Production

It uses Sync XHR which is great for development, but not so much in production.

Forunately, you can swap out this library with browserify or similar in production.

1.0.2

9 years ago

1.0.0

9 years ago

0.0.6

13 years ago

0.0.5

13 years ago

0.0.4

13 years ago

0.0.3

13 years ago

0.0.2

13 years ago