Httpd
Embedded httpd for Cordova apps. Light weight HTTP server.
Stuck on a Cordova issue?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Installation
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Supported Platforms
- Android
- iOS
- macOS
Usage
import { 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');
});