我想运行一个非常简单的HTTP服务器。每个GET请求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,图像)文件写一行。
如何在单个HTML页面中提供一些图像,CSS和JavaScript?
This is one of the fastest solutions i use to quickly see web pages
From then on just enter the directory of your html files and run
then change the device to Nexus 7 landscape.