From 6e1f556f0dc706528ff531669d9e1e39ea633ebb Mon Sep 17 00:00:00 2001 From: Vale the Violet Mote Date: Tue, 21 Jan 2020 17:15:06 -0500 Subject: [PATCH] Note that you can specify a port for reactor --- book/install/elm.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/book/install/elm.md b/book/install/elm.md index f265f387..475c651c 100644 --- a/book/install/elm.md +++ b/book/install/elm.md @@ -54,6 +54,10 @@ elm reactor This starts a server at [`http://localhost:8000`](http://localhost:8000). You can navigate to any Elm file and see what it looks like. Run `elm reactor`, follow the localhost link, and try to check out your `src/Main.elm` file! +**Note:** If you run into issues with port 8000, you can specify a different port with: +```bash +elm reactor --port 8080 +```