• Stars
    star
    633
  • Rank 68,202 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 12 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

browserify as a service.

browserify-as-a-service

Build Status

Places

Quick Start

Try visiting this link:

/standalone/concat-stream@latest

Also, wzrd.in has a nice url generating form.

What just happened?

Well, in this case, since someone has visited this link before you, the file was cached with leveldb. But if you were to try and grab a bundle that nobody else has tried to grab before, what would happen is this:

  • The module gets pulled down from npm and installed
  • The module gets browserified as a standalone bundle
  • The module gets sent to you, piping hot
  • The module gets cached so that you don't have to wait later on

API

There are a few API endpoints:

GET /bundle/:module

Get the latest version of :module.

GET /bundle/:module@:version

Get a version of :module which satisfies the given :version semver range. Defaults to latest.

GET /debug-bundle/:module

GET /debug-bundle/:module@:version

The same as the prior two, except with --debug passed to browserify.

GET /standalone/:module

GET /standalone/:module@:version

In this case, --standalone is passed to browserify.

GET /debug-standalone/:module

GET /debug-standalone/:module@:version

Both --debug and --standalone are passed to browserify!

POST /multi

POST a body that looks something like this:

{
  "options": {
    "debug": true
  },
  "dependencies": {
    "concat-stream": "0.1.x",
    "hyperstream": "0.2.x"
  }
}

"options" is where you get to set "debug", "standalone", and "fullPaths". Usually, in this case, you'll probably only really care about debug. If you don't define "options", it will default to { "debug": false, "standalone": false, "fullPaths": false }.

What you get in return looks something like this:

HTTP/1.1 200 OK
X-Powered-By: Express
Location: /multi/48GOmL0XvnRZn32bkpz75A==
content-type: application/json
Date: Sat, 22 Jun 2013 22:36:32 GMT
Connection: keep-alive
Transfer-Encoding: chunked

{
  "concat-stream": {
    "package": /* the concat-stream package.json */,
    "bundle": /* the concat-stream bundle */
  },
  "hyperstream": {
    "package": /* the hyperstream package.json */,
    "bundle": /* the hyperstream bundle */
  }
}

The bundle gets permanently cached at /multi/48GOmL0XvnRZn32bkpz75A== for future GETs.

GET /multi/:existing-bundle

If you saved the Location url from the POST earlier, you can just GET it instead of POSTing again.

GET /status/:module

GET /status/:module@:version

Get information on the build status of a module. Returns build information for all versions which satisfy the given semver (or latest in the event of a missing semver).

Blobs generally look something like this:

HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Content-Type: application/json; charset=utf-8
Content-Length: 109
ETag: "-9450086"
Date: Sun, 26 Jan 2014 08:05:59 GMT
Connection: keep-alive

{
  "module": "concat-stream",
  "builds": {
    "1.4.1": {
      "ok": true
    }
  }
}

The "module" and "builds" fields should both exist. Keys for "builds" are the versions. Properties:

  • "ok": Whether the package has last built or not
  • "error": If the package was built insuccessfully ("ok" is false), this property will contain information about the error

Versions which have not been built will not be keyed onto "builds".

Heroku Installation

browserify-cdn is ready to run on Heroku:

heroku create my-browserify-cdn
git push heroku master
heroku ps:scale web=1

Docker Installation

You can build and run an image doing the following:

docker build -t "wzrd.in" /path/to/wzrd.in
docker run -p 8080:8080 wzrd.in

Keep in mind that a new deploy will wipe the cache.

License

MIT

More Repositories

1

browserify

browser-side require() the node.js way
JavaScript
14,500
star
2

browserify-handbook

how to build modular applications with browserify
JavaScript
4,574
star
3

watchify

watch mode for browserify builds
JavaScript
1,783
star
4

events

Node's event emitter for all engines.
JavaScript
1,351
star
5

resolve

Implements the node.js require.resolve() algorithm
JavaScript
765
star
6

crypto-browserify

partial implementation of node's `crypto` for the browser
JavaScript
641
star
7

browserify-website

the code that runs http://browserify.org
HTML
590
star
8

brfs

browserify fs.readFileSync() static asset inliner
JavaScript
559
star
9

rustify

Rust WebAssembly transform for Browserify
JavaScript
494
star
10

webworkify

launch a web worker that can require() in the browser with browserify
JavaScript
412
star
11

tinyify

a browserify plugin that runs various optimizations, so you don't have to install them all manually. makes your bundles tiny!
JavaScript
409
star
12

detective

Find all calls to require() no matter how deeply nested using a proper walk of the AST
JavaScript
409
star
13

factor-bundle

factor browser-pack bundles into common shared bundles
JavaScript
402
star
14

commonjs-assert

Node.js's require('assert') for all engines
JavaScript
292
star
15

sha.js

Streamable SHA hashes in pure javascript
JavaScript
285
star
16

http-browserify

node's http module, but for the browser
JavaScript
243
star
17

node-util

node.js util module as a module
JavaScript
239
star
18

module-deps

walk the dependency graph to generate a stream of json output
JavaScript
209
star
19

bundle-collapser

convert bundle paths to IDs to save bytes in browserify bundles
JavaScript
194
star
20

vm-browserify

require('vm') like in node but for the browser
JavaScript
189
star
21

pbkdf2

PBKDF2 with any supported hashing algorithm in Node
JavaScript
184
star
22

browser-pack

pack node-style source files from a json stream into a browser bundle
JavaScript
173
star
23

static-eval

evaluate statically-analyzable expressions
JavaScript
169
star
24

path-browserify

The path module from Node.js for browsers
JavaScript
154
star
25

common-shakeify

browserify tree shaking plugin using `common-shake`
JavaScript
105
star
26

browser-resolve

resolve function which support the browser field in package.json
JavaScript
99
star
27

stream-browserify

the stream module from node core for browsers
JavaScript
98
star
28

randombytes

random bytes from browserify stand alone
JavaScript
94
star
29

diffie-hellman

pure js diffie-hellman
JavaScript
89
star
30

awesome-browserify

🔮 A curated list of awesome Browserify resources, libraries, and tools.
86
star
31

syntax-error

detect and report syntax errors in source code strings
JavaScript
78
star
32

static-module

convert module usage to inline expressions
JavaScript
73
star
33

ify-loader

Webpack loader to handle browserify transforms as intended.
JavaScript
67
star
34

browserify-aes

aes, for browserify
JavaScript
61
star
35

createHmac

Node style HMAC for use in the browser, with native implementation in node
JavaScript
61
star
36

stream-splicer

streaming pipeline with a mutable configuration
JavaScript
55
star
37

browser-unpack

parse a bundle generated by browser-pack
JavaScript
54
star
38

browserify-zlib

Full zlib module for browserify
JavaScript
54
star
39

createHash

Node style hashes for use in the browser, with native hash functions in node
JavaScript
52
star
40

md5.js

node style md5 on pure JavaScript
JavaScript
41
star
41

labeled-stream-splicer

stream splicer with labels
JavaScript
39
star
42

browserify-sign

createSign and createVerify in your browser
JavaScript
37
star
43

ripemd160

JavaScript component to compute the RIPEMD160 hash of strings or bytes.
JavaScript
32
star
44

console-browserify

Emulate console for all the browsers
JavaScript
31
star
45

publicEncrypt

publicEncrypt/privateDecrypt for browserify
JavaScript
29
star
46

buffer-xor

A simple module for bitwise-xor on buffers
JavaScript
29
star
47

insert-module-globals

insert implicit module globals into a module-deps stream
JavaScript
26
star
48

createECDH

browserify version of crypto.createECDH
JavaScript
24
star
49

timers-browserify

timers module for browserify
JavaScript
23
star
50

EVP_BytesToKey

JavaScript
20
star
51

parse-asn1

JavaScript
19
star
52

browserify-rsa

JavaScript
19
star
53

cipher-base

abstract base class for crypto-streams
JavaScript
18
star
54

browserify-cipher

JavaScript
18
star
55

deps-sort

sort module-deps output for deterministic browserify bundles
JavaScript
16
star
56

tty-browserify

the tty module from node core for browsers
JavaScript
14
star
57

acorn-node

the acorn javascript parser, preloaded with plugins for syntax parity with recent node versions
JavaScript
12
star
58

hash-base

abstract base class for hash-streams
JavaScript
11
star
59

admin

administrative procedures for the browserify org
11
star
60

discuss

discuss project organization, initiatives, and whatever!
11
star
61

browserify-des

DES for browserify
JavaScript
10
star
62

randomfill

JavaScript
9
star
63

buffer-reverse

A lite module for byte reversal on buffers.
JavaScript
6
star
64

hash-test-vectors

JavaScript
3
star
65

pseudorandombytes

pseudorandombytes for the browser
JavaScript
3
star
66

detective-esm

find es module dependencies [experimental]
JavaScript
2
star
67

timing-safe-equal

JavaScript
2
star
68

perf-hooks-browserify

[WIP] The perf_hooks node module API for browserify
JavaScript
2
star
69

.github

Housing of Browserify's GitHub configuration and base files
1
star
70

scrypt

JavaScript
1
star