0.7.0 • Published 11 years ago

browserbuild v0.7.0

Weekly downloads
57
License
-
Repository
-
Last release
11 years ago

Browserbuild

The simple solution to Node.JS/browser interoperatibility

Browserbuild solves the same problem everyone wants to solve: how do I make a module interoperable between the server and client?

It takes 3 easy steps

Step 1: write for Node

/**
 * Module dependencies.
 */

var a = require('./b')

/**
 * Module exports.
 */

exports.hello = function () { };

Step 2: build for browser

$ browserbuild world.js
# outputs dist/world.js

Step 3: use

On the server-side:

require('./world').hello();

On the client side:

<script src="/js/world.js"></script>
<script>
  world.hello();
</script>

Features

  • Write code like you would write for Node.JS.
    • No wrappers
    • No undefined type checking for module or window.
  • No new patterns
    • No AMD, no require.async, no CommonJS transport proposals.
    • Doesn't depend on require implementations on the client.
    • It exposes your module as a single global, like jQuery, io, _. Just like everyone is used to.
  • No code bloat.
    • The conversion for the browser only adds a few lines of code.
    • No trouble debugging.

Credits

  • require functions by Jonah Fox, with modifications by TJ Holowaychuk <tj@learnboost.com>
  • inspired by browserify

License

(The MIT License)

Copyright (c) 2011 Guillermo Rauch <guillermo@learnboost.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.7.0

11 years ago

0.6.0

12 years ago

0.5.0

12 years ago

0.4.9

12 years ago

0.4.8

12 years ago

0.4.7

12 years ago

0.4.6

12 years ago

0.4.5

12 years ago

0.4.4

12 years ago

0.4.3

12 years ago

0.4.2

12 years ago

0.4.1

12 years ago

0.4.0

12 years ago

0.3.1

12 years ago

0.3.0

12 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago