diff --git a/docs/client/concepts.html b/docs/client/concepts.html
index 06568f0f4d..5e91b50b08 100644
--- a/docs/client/concepts.html
+++ b/docs/client/concepts.html
@@ -29,7 +29,7 @@ Meteor is two things:
* A _library of packages_: pre-written, self-contained modules that
you might need in your app.
There are about a dozen core Meteor
-packages that most any app will use (for example `webapp`, which
+packages that most any app will use (for example [`webapp`](#webapp), which
handles incoming HTTP connections, and `templating`, which lets you
make HTML templates that automatically update live as data changes).
Then there are optional packages like `email`, which lets your app
diff --git a/docs/client/docs.js b/docs/client/docs.js
index 82b65f30a9..2963477ea4 100644
--- a/docs/client/docs.js
+++ b/docs/client/docs.js
@@ -402,7 +402,8 @@ var toc = [
"spiderable",
"stylus",
"showdown",
- "underscore"
+ "underscore",
+ "webapp"
] ],
"Command line", [ [
diff --git a/docs/client/packages.html b/docs/client/packages.html
index 9a903657e1..d835975ee6 100644
--- a/docs/client/packages.html
+++ b/docs/client/packages.html
@@ -36,6 +36,7 @@ Meteor Development Group maintains the following packages:
{{> pkg_stylus}}
{{> pkg_showdown}}
{{> pkg_underscore}}
+{{> pkg_webapp}}
{{/markdown}}
diff --git a/docs/client/packages/webapp.html b/docs/client/packages/webapp.html
new file mode 100644
index 0000000000..b18c440693
--- /dev/null
+++ b/docs/client/packages/webapp.html
@@ -0,0 +1,47 @@
+
+{{#markdown}}
+## `webapp`
+
+The `webapp` package is what lets your Meteor app serve content to a web
+browser. It is included in the `meteor-platform` set of packages that is
+automatically added when you run `meteor create`. You can easily build a
+Meteor app without it - for example if you wanted to make a command-line
+tool that still used the Meteor package system and DDP.
+
+This package also allows you to add handlers for HTTP requests.
+This lets other services access your app's data through an HTTP API, allowing
+it to easily interoperate with tools and frameworks that don't yet support DDP.
+
+`webapp` exposes the [connect](https://github.com/senchalabs/connect) API for
+handling requests through `WebApp.connectHandlers`.
+Here's an example that will let you handle a specific URL:
+
+```js
+// Listen to incoming HTTP requests, can only be used on the server
+WebApp.connectHandlers.use("/hello", function(req, res, next) {
+ res.writeHead(200);
+ res.end("Hello world from: " + Meteor.release);
+});
+```
+
+`WebApp.connectHandlers.use([path], handler)` has two arguments:
+
+**path** - an optional path field.
+This handler will only be called on paths that match
+this string. The match has to border on a `/` or a `.`. For example, `/hello`
+will match `/hello/world` and `/hello.world`, but not `/hello_world`.
+
+**handler** - this is a function that takes three arguments:
+
+- **req** - a Node.js
+[IncomingMessage](http://nodejs.org/api/http.html#http_http_incomingmessage)
+object with some extra properties. This argument can be used to get information
+about the incoming request.
+- **res** - a Node.js
+[ServerResponse](http://nodejs.org/api/http.html#http_class_http_serverresponse)
+object. Use this to write data that should be sent in response to the
+request, and call `res.end()` when you are done.
+- **next** - a function. Calling this function will pass on the handling of
+this request to the next relevant handler.
+{{/markdown}}
+
\ No newline at end of file
diff --git a/meteor b/meteor
index 6a0ce87e63..4e1f16d457 100755
--- a/meteor
+++ b/meteor
@@ -1,6 +1,6 @@
#!/bin/bash
-BUNDLE_VERSION=0.3.50
+BUNDLE_VERSION=0.3.51
# OS Check. Put here because here is where we download the precompiled
# bundles that are arch specific.