https://github.com/cx0der/http-server
A simple static web server from scratch without external dependencies
https://github.com/cx0der/http-server
http-server java java-8 scratch
Last synced: 11 months ago
JSON representation
A simple static web server from scratch without external dependencies
- Host: GitHub
- URL: https://github.com/cx0der/http-server
- Owner: cx0der
- License: gpl-3.0
- Created: 2019-02-09T14:47:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-03T13:07:46.000Z (over 1 year ago)
- Last Synced: 2025-04-02T06:17:06.699Z (about 1 year ago)
- Topics: http-server, java, java-8, scratch
- Language: Java
- Size: 79.1 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTP Server
A bare bones HTTP server in Java without any external dependencies.
## Getting Started
Steps to get started with Http server.
### Prerequisites
To build and run all you need are:
* JDK 8+
* Gradle
### Running
Build the server using gradle
```
./gradlew jar
```
Once built, run it using
```
./gradlew run
```
## LICENSE
This project is licensed under the GPL3 License - see the [LICENSE](LICENSE) file for details.