From 3170cf08ba7d9e240695cceec9e0848f3b9a2754 Mon Sep 17 00:00:00 2001 From: Ondrej Brablc Date: Fri, 8 Sep 2023 18:33:35 +0200 Subject: 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. --- docs/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/quickstart.md') 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!". -- cgit v1.2.3