Skip to content

Commit bb83e44

Browse files
authored
Prettify README and add Introduction
1 parent 0f13829 commit bb83e44

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727

2828
<br>
2929

30-
# Quick Start
30+
# Getting Stardet
3131
```java
32-
Express app = new Express();
32+
Express app = new Express();
3333

3434
app.get("/", (req, res) -> {
3535
res.send("Hello World");
@@ -38,6 +38,9 @@ app.get("/", (req, res) -> {
3838
app.listen(); // Will listen on port 80 which is set as default
3939
```
4040

41+
# Why?
42+
The aim of this project is to allow everybody to create, in a short time, an small and fast HTTP-Server. It's based on [expressjs](https://github.com/expressjs/express) which is really easy to use and also very small and especially fast. The Documentation is currently in progress an will be outsurced when i've got time for this. Therefore any contributions would be great.
43+
4144
# Docs:
4245
* [Routing](#routing)
4346
* [Direct](#direct)
@@ -446,4 +449,4 @@ app.get("my-data"); // Returns "Hello World"
446449
```
447450
# License
448451

449-
This project is licensed under the GNU GPLv3 License - see the [LICENSE](https://github.com/Simonwep/java-express/blob/master/LICENSE) file for details
452+
This project is licensed under the GNU GPLv3 License - see the [LICENSE](https://github.com/Simonwep/java-express/blob/master/LICENSE) file for details

0 commit comments

Comments
 (0)