Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace live-server by five-server #4836

Merged
merged 1 commit into from
Apr 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ editors. Both support remixing or forking:
For the options below, we should develop projects using a local server so that
files are properly served. Options of local servers include:

- Running `npm i -g five-server@latest && five-server --port=8000` in a terminal
in the same directory as your HTML file.
- Downloading the [Mongoose](https://www.cesanta.com/products/binary) application
and opening it from the same directory as your HTML file.
- Running `python -m SimpleHTTPServer` (or `python -m http.server` for Python 3)
in a terminal in the same directory as your HTML file.
- Running `npm install -g live-server && live-server` in a terminal in the same
directory as your HTML file.

Once we are running our server, we can open our project in the browser using
the local URL and port which the server is running on (e.g.,
Expand Down