Я работаю с angular вместе с Nodejs над созданием собственного приложения с Capitorjs, и я пытаюсь создать веб-сервер внутри самого приложения.Я тестирую приложение на локальном сервере, но оно должно запускаться отдельно от этого, что-то вроде этого:
import { Component, OnInit } from '@angular/core';
import { Plugins } from '@capacitor/core';
import * as $ from 'jquery';
import * as http from 'http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
title = 'app';
ngOnInit() {
$('#HelpBtn').click(function() {
$('#Info').fadeToggle()
})
}
btnClick() {
http.createServer(function (req, res) {
res.write('Hello World!'); //write a response to the client
res.end(); //end the response
}).listen(8080); //the server object listens on port 8080
}
}
Оно работает вместе с Capitor.js, поэтому есть ли встроенные компоненты или модули в любой средечто может мне помочь?желательно тот, который может отображать файлы .html?что-то вроде это