使用node.js作为简单的Web服务器我想运行一个非常简单的HTTP服务器。每次请求example.com应该得到index.html服务于它,但作为一个常规的HTML页面(即,同样的经验,当你读正常的网页)。使用下面的代码,我可以读取index.html..我该怎么服务?index.html作为一个常规的网页?var http = require('http');var fs = require('fs');var index = fs.readFileSync('index.html');http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end(index);}).listen(9615);下面有一个建议很复杂,需要我写一个get我想使用的每个资源(CSS、JavaScript、图像)文件的行。如何使用一些图像、CSS和JavaScript为单个HTML页面提供服务?
3 回答
墨色风雨
TA贡献1853条经验 获得超6个赞
用npm安装连接和服务静态。 $ npm install connect serve-static
创建具有以下内容的server.js文件: var connect = require('connect');var serveStatic = require('serve-static');connect().use(serveStatic(__dirname)).listen(8080, function(){ console.log('Server running on 8080...');});
使用Node.js运行 $ node server.js
http://localhost:8080/yourfile.html
- 3 回答
- 0 关注
- 699 浏览
添加回答
举报
0/150
提交
取消