UNPKG

135 BJavaScriptView Raw
1'use strict';
2
3const http = require('http');
4
5http.createServer(function (req, res, next) {
6 res.end('Hello World');
7}).listen(3045);