## Httpd: Web Server embebido en Cordova ##

Plataformas Soportadas:
* iOS
* Android


## ¿Como agregar Httpd a un proyecto? ##

Agregar desde un repositorio (npm):
```bash
    cordova plugin add cordova-plugin-httpd-webserver
```
Agregar desde un repositorio (Gitlab):
```bash
    cordova plugin add https://gitlab.com/bidi2020-grp/cordova-plugin-httpd-webserver.git
```
    
## Javascript APIs ##

```javascript
startServer( options, success_callback, error_callback );

stopServer( success_callback, error_callback );

getURL( success_callback, error_callback );

getLocalPath( success_callback, error_callback );
```

Example code: (read the comments)

```javascript
	//Proximamente
```

