Update README.md

This commit is contained in:
Michael Bykovski 2017-07-13 09:39:36 +02:00 committed by GitHub
parent 31591b8cd5
commit 8a261cc34a

View File

@ -1,7 +1,13 @@
# cordova-plugin-webserver
*A webserver plugin for cordova*
This plugin helps you to start a full webserver in JavaScript on Android and iOS.
## Current supported platforms
- Android (i think all version?! Tell me if it's not true)
- iOS (8.0 or later (armv7, armv7s or arm64))
## Why?
I started this project because I wanted a solution like [ExpressJS](http://expressjs.com/de/) but hybrid (for iOS and Android). I didn't want to build two native applications which each serve a backend (two codebases are just bah!). So this is the solution to create a Webserver which can receives HTTP Requests and responds with HTTP Responds.
@ -93,3 +99,11 @@ webserver.start();
// stop the server
webserver.stop();
```
## Credits
Special thanks to:
- https://github.com/NanoHttpd/nanohttpd
- https://github.com/swisspol/GCDWebServer