Skip to content

Run a web server from any folder

A common need you can have is to spin up a Web Server from a particular folder in your system.

You have absolutely no time to configure a proper web server like Apache or Nginx because this is just for a few minutes or for testing your app.

How do you do so?

Depending on the language you prefer, you might already have all you need.

If you use Node.js and you have installed npm already, run

npm install -g http-server

and then run http-server in the folder you want to expose through your server.

By default it will start the server on port 8080, but you can change it using the -p flag (see more options by running http-server --help).

If you use Python and have it installed, just run

python -m SimpleHTTPServer 8080

(Python 2)

or

python -m http.server 8080

(Python 3)

to start a local server on port 8080.

If you use PHP and you run a modern version of it, run

php -S localhost:8080
→ Download my free Node.js Handbook!

THE VALLEY OF CODE

THE WEB DEVELOPER's MANUAL

You might be interested in those things I do:

  • Learn to code in THE VALLEY OF CODE, your your web development manual
  • Find a ton of Web Development projects to learn modern tech stacks in practice in THE VALLEY OF CODE PRO
  • I wrote 16 books for beginner software developers, DOWNLOAD THEM NOW
  • Every year I organize a hands-on cohort course coding BOOTCAMP to teach you how to build a complex, modern Web Application in practice (next edition February-March-April-May 2024)
  • Learn how to start a solopreneur business on the Internet with SOLO LAB (next edition in 2024)
  • Find me on X

Related posts that talk about node: