From 8a261cc34a9a00f493aa542daea08926f8565262 Mon Sep 17 00:00:00 2001 From: Michael Bykovski Date: Thu, 13 Jul 2017 09:39:36 +0200 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 9201e2a..c2521f3 100644 --- a/README.md +++ b/README.md @@ -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 +