How to run html file on localhost? [closed]
Asked Answered
M

13

121

I have an HTML file and I run it on localhost. But, this file includes a mirror using a webcam. For example, how can I run this HTML file on localhost? Webcam starts in this example when checking to live checkbox.

Malocclusion answered 21/7, 2016 at 7:10 Comment(0)
A
120

You can use python -m http.server. By default the local server will run on port 8000. If you would like to change this, simply add the port number python -m http.server 1234

If you are using python 2 (instead of 3), the equivalent command is python -m SimpleHTTPServer

Anting answered 21/7, 2016 at 7:13 Comment(4)
I create HTTPServer. What will i do now?Morena
OK. I am done. I transport my project to C:/Python27 and i run it on 127.0.0.1:8000Morena
So you run the python command "python -m SimpleHTTPServer" and then navigate to localhost:8000 in your browser and click the desired html file. Great solution!Kraal
The python 3 equivalent is python3 -m http.server You want to navigate to the directory that contains the files you wish to open locally, and then run that command. Then open up localhost:8000 if you are using the default port.Gleeman
W
236

You can run your file in http-server.

1> Have Node.js installed in your system.

2> In CMD, run the command npm install http-server -g

3> Navigate to the specific path of your file folder in CMD and run the command http-server

4> Go to your browser and type localhost:8080. Your Application should run

Widow answered 21/1, 2018 at 6:53 Comment(4)
Thank you very much. That is exactly what I was looking for! Easy to do and works ;)Jannet
Even faster for one-time run is npx http-server from the folder you want to share. To add CORS you can run npx http-server --cors.Expecting
Make sure to run the cmd as an administratorOutlier
@Expecting if you put that in an answer I would vote on it!Smell
A
120

You can use python -m http.server. By default the local server will run on port 8000. If you would like to change this, simply add the port number python -m http.server 1234

If you are using python 2 (instead of 3), the equivalent command is python -m SimpleHTTPServer

Anting answered 21/7, 2016 at 7:13 Comment(4)
I create HTTPServer. What will i do now?Morena
OK. I am done. I transport my project to C:/Python27 and i run it on 127.0.0.1:8000Morena
So you run the python command "python -m SimpleHTTPServer" and then navigate to localhost:8000 in your browser and click the desired html file. Great solution!Kraal
The python 3 equivalent is python3 -m http.server You want to navigate to the directory that contains the files you wish to open locally, and then run that command. Then open up localhost:8000 if you are using the default port.Gleeman
S
21

If you are running Python3, you may want to instead try:

python -m http.server

See this answer.

Spinoza answered 13/8, 2018 at 1:16 Comment(0)
E
18

If you have Node.js installed then from the folder you want to share you can simply run:

npx http-server

To add CORS you can run:

npx http-server --cors
Expecting answered 20/11, 2021 at 7:50 Comment(1)
Thanks a lot. Its working on end is "npx http-server"Nakashima
F
12

On macOS:

Open Terminal (or iTerm) install Homebrew then run brew install live-server and run live-server.

You also can install Python 3 and run python3 -m http.server PORT.

On Windows:

If you have VS Code installed open it and install extension liveserver, then click Go Live in the bottom right corner.

Alternatively you can install WSL2 and follow the macOS steps via apt (sudo apt-get).

On Linux:

Open your favorite terminal emulator and follow the macOS steps via apt (sudo apt-get).

Footmark answered 2/9, 2020 at 15:21 Comment(1)
Your VSCode suggestion was perfect for me. I was already using VSCode and I just needed a way to host a demo site locally for me to play around. The Go Live extension is a perfect one-click solutionTavarez
W
9
  • Install Node js - https://nodejs.org/en/

  • go to folder where you have html file:

    • In CMD, run the command to install http server- npm install http-server -g
    • To load file in the browser run - http-server
  • If you have specific html file. Run following command in CMD.- http-server fileName

  • by default port is 8080

  • Go to your browser and type localhost:8080. Your Application should run there.

  • If you want to run on different port: http-server fileName -p 9000

Note : To run your .js file run: node fileName.js

Wideangle answered 14/2, 2019 at 12:48 Comment(0)
H
5

As Nora suggests, you can use the python simple server. Navigate to the folder from which you want to serve your html page, then execute python -m SimpleHTTPServer. Now you can use your web-browser and navigate to http://localhost:8000/ where your page is being served. If your page is named index.html then the server automatically loads that for you. If you want to access any other page, you'll need to browse to http://localhost:8000/{your page name}

Hulen answered 21/7, 2016 at 8:18 Comment(0)
B
3

You can try installing one of the following localhost softwares:

  1. xampp
  2. wamp
  3. ammps server
  4. laragon

There are many more such softwares but the best among them are the ones mentioned above. they also allow domain names (for example: example.com)

Beersheba answered 4/4, 2020 at 6:50 Comment(0)
S
2

Another option if you have Node.js installed,

npx serve .

It will serve you a static site/single page application in the current directory.

Reference

Supplication answered 27/6, 2023 at 14:19 Comment(0)
H
1

You can install Xampp and run apache serve and place your file to www folder and access your file at localhost/{file name} or simply at localhost if your file is named index.html

Histone answered 21/8, 2019 at 10:40 Comment(0)
P
1

You can also use PHP to server the files in http

make sure you installed PHP, run the below command to verify

php --version

if PHP is not installed run below command to install it

sudo apt install php7.4-cli

Once after the installation go to the file path and execute the below command in the terminal

php -S localhost:8000
Psychophysics answered 25/1, 2022 at 0:32 Comment(0)
D
1

just npx serve it's more compatible with esmodule

Door answered 29/12, 2022 at 2:25 Comment(0)
L
-1

I have explored many methods as I wanted to host virtual tour on local host as it wasn't working as browser was opening it as a file. I think following is by far the easiest method.

  1. Download VS Code from microsft
  2. Install "Live Server" extension in vs code
  3. Add folder and run HTML file.

enter image description here

I found this method from here in Youtube video.

Lebanon answered 12/4, 2024 at 14:23 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.