这是官方的一个例子,
在F盘建立一个tinyphp.js文件,内容:
var http = require(‘http‘); http.createServer(function (req, res) { res.writeHead(200, {‘Content-Type‘: ‘text/plain‘}); res.end(‘Hello World\n‘); }).listen(1337, "127.0.0.1"); console.log(‘Server running at http://127.0.0.1:1337/‘);
在F盘下运行node tinyphp.js
然后打开浏览器访问: http://127.0.0.1:1337
需要提示的是,命令完,需要按Ctrl+C才能重新写命令的
时间: 2024-10-27 16:35:38