aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ondrej Brablc <ondrej@brablc.com> 2023-09-08 18:33:35 +0200
committerGravatar GitHub <noreply@github.com> 2023-09-08 09:33:35 -0700
commit3170cf08ba7d9e240695cceec9e0848f3b9a2754 (patch)
treeb8e46c8b0ae5c08d47e339eb374d6a02d197cad8
parent182d3f1567eb37a01c278f5912ee48d6e4546642 (diff)
downloadbun-3170cf08ba7d9e240695cceec9e0848f3b9a2754.tar.gz
bun-3170cf08ba7d9e240695cceec9e0848f3b9a2754.tar.zst
bun-3170cf08ba7d9e240695cceec9e0848f3b9a2754.zip
Make the link to application clickable in the terminal (#4544)
Terminals like iTerm require valid URL to make them clickable. Adding a space to make it valid. Similar problem is on https://bun.sh/, where protocol is missing.
-rw-r--r--docs/quickstart.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 156e1145b..38f51a366 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -39,14 +39,14 @@ const server = Bun.serve({
},
});
-console.log(`Listening on http://localhost:${server.port}...`);
+console.log(`Listening on http://localhost:${server.port} ...`);
```
Run the file from your shell.
```bash
$ bun index.ts
-Listening at http://localhost:3000...
+Listening at http://localhost:3000 ...
```
Visit [http://localhost:3000](http://localhost:3000) to test the server. You should see a simple page that says "Bun!".