serve function
Starts the Node runtime for server.
Implementation
Future<Runtime> serve(
Server server, {
String host = '127.0.0.1',
int port = 3000,
}) {
return serveNodeRuntime(server, host: host, port: port);
}
Starts the Node runtime for server.
Future<Runtime> serve(
Server server, {
String host = '127.0.0.1',
int port = 3000,
}) {
return serveNodeRuntime(server, host: host, port: port);
}