From 9d59c2143f7bf7b437fcbe41bf986b511a7ee2a7 Mon Sep 17 00:00:00 2001 From: Ryuichi Okumura Date: Tue, 19 Jul 2016 22:18:51 +0900 Subject: [PATCH] Clarify getting started example The first example in README is mentioning `client.js`. When it serve via `budo`, I think the client-side script is the `client.js` not `bundle.js` in this case. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 230873b..2c48a9a 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ do: ```bash $ mkdir -p 'dist/' $ curl 'localhost:8080' > 'dist/index.html' -$ curl 'localhost:8080/bundle.js' > 'dist/bundle.js' +$ curl 'localhost:8080/client.js' > 'dist/client.js' ``` All using a couple of shell commands and `.js` files, no grandiose boilerplate needed.