需求未定义?节点.js
刚开始使用 Node.js。在我的文件中,我正在执行如下操作:app/js
应用程序.js
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Am I really running a server?!');
}).listen(8080, '127.0.0.1');
console.log('running server!');
当我在终端中运行时,控制台吐出,但在我的浏览器中,我得到了。node app.js
'running server!'
Uncaught ReferenceError: require is not defined
有人可以向我解释为什么在终端中,它可以正常工作,但在浏览器中却不能?
我正在使用节点来为我的页面提供服务。http-server