diff --git a/packages/browser/sdk/README.md b/packages/browser/sdk/README.md
index f9a98eb41..01a195434 100644
--- a/packages/browser/sdk/README.md
+++ b/packages/browser/sdk/README.md
@@ -2,17 +2,17 @@
# MongoDB Stitch Browser SDK
-The official [MongoDB Stitch](https://stitch.mongodb.com/) Browser SDK for JavaScript/TypeScript.
+The official [MongoDB Stitch](https://www.mongodb.com/cloud/stitch) Browser SDK for JavaScript/TypeScript.
### Index
- [Documentation](#documentation)
- [Discussion](#discussion)
- [Installation](#installation)
-- [Example Usage](#example-usage)
+- [Getting Started](#getting-started)
## Documentation
-* [API/Typedoc Documentation](https://docs.mongodb.com/stitch-sdks/js/4/index.html)
* [MongoDB Stitch Documentation](https://docs.mongodb.com/stitch/)
+* [API Reference Manual](https://docs.mongodb.com/stitch-sdks/js/4/index.html)
## Discussion
* [MongoDB Stitch Users - Google Group](https://groups.google.com/d/forum/mongodb-stitch-users)
@@ -28,17 +28,9 @@ Run the following in the root directory of your NPM project.
npm install mongodb-stitch-browser-sdk
```
-This will start you off with the core SDK functionality as well as the remote MongoDB service.
+This will start you off with the [core SDK functionality](classes/stitch.html) as well as the [remote MongoDB service](modules/remotemongoclient.html).
-For customized dependencies use the following:
-
-```bash
-npm install mongodb-stitch-browser-core
-npm install mongodb-stitch-browser-services-aws
-npm install mongodb-stitch-browser-services-http
-npm install mongodb-stitch-browser-services-mongodb-remote
-npm install mongodb-stitch-browser-services-twilio
-```
+See [Customized Dependencies (Advanced)](#customized-dependencies) below for customizing dependencies.
### HTML Script Tags
@@ -48,32 +40,49 @@ You can also include the SDK directly in your HTML code using script tags. For c
```
-For customized dependencies use the following:
-```html
-
-
-
-
-
-```
+See [Customized Dependencies (Advanced)](#customized-dependencies) below for customizing dependencies.
-## Example Usage
+## Getting Started
### Creating a new app with the SDK (NPM)
#### Set up an application on Stitch
+
+First, you need to create the server-side Stitch app, and (for the purpose of this quick start) enable anonymous authentication:
+
1. Go to [https://stitch.mongodb.com/](https://stitch.mongodb.com/) and log in to MongoDB Atlas.
2. Create a new app in your project with your desired name.
3. Go to your app in Stitch via Atlas by clicking Stitch Apps in the left side pane and clicking your app.
3. Copy your app's client app id by going to Clients on the left side pane and clicking copy on the App ID section.
4. Go to Providers from Users in the left side pane and edit and enable "Allow users to log in anonymously".
+For detailed instructions, see [Create a Stitch App](https://docs.mongodb.com/stitch/procedures/create-stitch-app/).
+
#### Set up an NPM project
+
+Next, you create the source for your client app.
+
1. Ensure that you have `npm` installed. See [npmjs.com](https://www.npmjs.com).
-2. Initialize a new NPM project with `npm init`.
-3. Add the MongoDB Stitch Browser SDK by running `npm install mongodb-stitch-browser-sdk`.
-4. Install `webpack.js` by running `npm install --save-dev webpack webpack-cli`.
-5. Add the following field to the `"scripts"` field of your `package.json`:
+2. Initialize a new NPM project:
+
+```bash
+mkdir StitchProject && cd StitchProject
+npm init
+```
+
+3. Add the MongoDB Stitch Browser SDK:
+
+```bash
+npm install mongodb-stitch-browser-sdk
+```
+
+4. Install [webpack.js](https://webpack.js.org):
+
+```bash
+npm install --save-dev webpack webpack-cli
+```
+
+5. Add the following field to the `"scripts"` field of the `package.json` file that was generated by `npm init`:
```json
"scripts": {
@@ -81,7 +90,7 @@ For customized dependencies use the following:
}
```
-6. Create directories for your source files, and your distributed files:
+6. Create directories for your source files and your distributed files:
```bash
mkdir src dist
@@ -118,8 +127,17 @@ window.onload = initializeAndLogin;