
META-INF.es4x-commands.init.ts.index.ts Maven / Gradle / Ivy
///
// @ts-check
vertx
.createHttpServer()
.requestHandler(function (req: any) {
req.response()
.putHeader("content-type", "text/plain")
.end("Hello!");
}).listen(8080);
console.log('Listening at http://127.0.0.1:8080');
© 2015 - 2025 Weber Informatics LLC | Privacy Policy