Httpd
Embedded httpd for Cordova apps. Light weight HTTP server.
https://github.com/floatinghotpot/cordova-httpd
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-httpd $ npm install @ionic-native/httpd $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-httpd $ npm install @ionic-native/httpd
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
- macOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Httpd, HttpdOptions } from '@ionic-native/httpd/ngx';
constructor(private httpd: Httpd) { }
...
let options: HttpdOptions = { www_root: 'httpd_root', // relative path to app's www directory port: 80, localhost_only: false }
this.httpd.startServer(options).subscribe((data) => { console.log('Server is live');});