Httpd
Embedded httpd for Cordova apps. Light weight HTTP server.
联系我们?

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.
Ionic 服务器Httpd插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic 服务器Httpd插件支持的平台(Supported Platforms)
- Android
- iOS
- macOS
Ionic 服务器Httpd插件的用法(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');
});