Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Simple_HTTP_Server

Runs simple HTTP webserver on port 8080

All webpages are extremely simple as this repo is mostly designed to show how to render pages/return json data from a webserver

How to Run

No runAll.sh bash script is provided for this repo. To run, go into each directory and run the main script. To exit, hit ctrl+c from the terminal.

Examples:

cd python
python main.py
cd ..

# Not functional
cd perl
perl main.pl
cd ..

cd javascript
node ./javascript/main.js
cd ..

# Not functional
cd cpp
./bin/main
cd ..