mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
'use strict';
|
|
|
|
const http = require('http');
|
|
|
|
http.createServer(function (req, res, next) {
|
|
res.end('Hello World');
|
|
}).listen(3045);
|