aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorritchie <ritchie@gmx.at>2015-09-27 07:11:40 +0200
committerritchie <ritchie@gmx.at>2015-09-27 07:11:40 +0200
commited02162dc4b43886e23b2b6888d03bf1f3801d6e (patch)
tree90b1f1d0dea4f9af6a59436976e9e0c9a2dfeeb6
parent2681f5f9a272a86cd75271747f29c8a2d98039c4 (diff)
downloadnanohttpd-ed02162dc4b43886e23b2b6888d03bf1f3801d6e.tar.gz
nanolets in the readme #214
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 4eacb5c..5307fef 100644
--- a/README.md
+++ b/README.md
@@ -78,6 +78,11 @@ Compile and run the server:
If it started ok, point your browser at <http://localhost:8080/> and enjoy a web server that asks your name and replies with a greeting.
+### Nanolets
+
+Nanolets are like sevlet's only that they have a extrem low profile. They offer an easy to use system for a more complex server application.
+This text has to be extrended with an example, so for now take a look at the unit tests for the usage. <https://github.com/NanoHttpd/nanohttpd/blob/master/nanolets/src/test/java/fi/iki/elonen/router/AppNanolets.java>
+
## Status
We are currently in the process of stabilizing NanoHttpd from the many pull requests and feature requests that were integrated over the last few months. The next release will come soon, and there will not be any more "intended" major changes before the next release. If you want to use the bleeding edge version, you can clone it from Github, or get it from sonatype.org (see "Maven dependencies / Living on the edge" below).
@@ -94,6 +99,10 @@ NanoHTTPD project currently consist of four parts:
* `/webserver` – Standalone file server. Run & enjoy. A popular use seems to be serving files out off an Android device.
+ * `/nanolets` – Standalone nano app server, giving a servlet like system to the implementor.
+
+ * `/fileupload` – integration of the apache common file upload library.
+
## Features
### Core
* Only one Java file, providing HTTP 1.1 support.