
META-INF.es4x-commands.init.ts.index.ts Maven / Gradle / Ivy
The newest version!
///
// @ts-check
vertx
.createHttpServer()
.requestHandler(function (req: any) {
req.response()
.putHeader("content-type", "text/plain")
.end("Hello!");
}).listen(3000);
console.log('Server started on port 3000');
© 2015 - 2025 Weber Informatics LLC | Privacy Policy