Node.js 移动端可访问的静态服务器
0002
8年前
<p>之前有用过一些别人写的,要嘛太冗杂,要么有错误,还是自己搞一搞靠谱。</p> <h3>需求背景</h3> <p>之前开发环境用的是xampp的Apache和php的环境,因为公司服务器的语言是PHP的,有时要写一些后台,但是下载的一些前端lib框架库文件没有放在htdocs目录下怕太乱。</p> <p>有时要查看一些前端框架的源码和example,file:///显然是不行的,例如引入一个cdn的文件,或者页面有ajax,就需要一个简单的静态服务器可以访问这些文件。这个时候nodejs一个文件就可以搞定一个简单的服务器就显得十分合适。</p> <p>系统环境:windows</p> <p>基本思路:</p> <ol> <li> <p>http模块创建服务器</p> </li> <li> <p>url,path模块解析url确定文件路径</p> </li> <li> <p>判断请求的文件类型,返回不同的MIME类型(MIME类型不正确浏览器是不能正常解析的)</p> </li> <li> <p>返回对应的资源</p> </li> <li> <p>移动端真机测试访问的处理</p> </li> </ol> <h3>创建服务器</h3> <pre> <code class="language-javascript">var http = require('http'), url = require('url'), path = require('path'), fs = require('fs'), os = require('os'); var server = http.createServer(function (req,res){ res.writeHead(200,{'Content-Type':'text/plain'}); res.write('hello'); res.end(); }) server.listen('8080',function (){ console.log('server start'); })</code></pre> <p>服务器创建好了,可以访问后,就要根据请求的url确定请求的文件路径了。</p> <h3>处理请求文件路径--简单的路由</h3> <p>请求成功回调函数如下</p> <pre> <code class="language-javascript">var filename = __dirname+url.parse(req.url).pathname; var resContentType = 'text/html';//返回资源的MIME类型 fs.exists(filename,function (exists){ if (!exists){ //文件不存在返回404 res.writeHead(404,{'Content-Type':'text/plain'}); res.write('404 Not Found'); res.end(); }else { //文件存在读取并返回 fs.readFile(filename,function (err,data){ if (err){ res.writeHead(500,{'Content-Type':'text/plain'}); res.end(err); }else{ res.writeHead(200,{'Content-Type':resContentType}); res.write(data); res.end(); } }) } })</code></pre> <p>这里我们先所有请求都返回html类型,这显然是不行的,像css文件,js文件的MIME不是'text/html',所以要处理不同请求文件的MIME类型,这里我们加一个映射表。</p> <p>注意: __dirname 一定要加上,单纯的 url.parse(req.url).pathname 的路径, fs.exists 是找不到的,永远返回404。还有有的文章还有用 path.exists ...坑的好惨啊,path模块根本没有exists方法,要用fs模块的。</p> <h3>处理不同文件类型的MIME</h3> <pre> <code class="language-javascript">var mime = { "html": "text/html", "htm": "text/html", "css": "text/css", "js": "text/javascript", "xml": "text/xml", "json": "application/json", "jpg": "image/jpeg", "jpeg": "image/jpeg", "png": "image/png", "gif": "image/gif", "bmp": "image/bmp", "svg": "image/svg+xml", "ico": "image/x-icon", "mp3": "audio/mpeg", "wav": "audio/x-wav", "mp4": "video/mp4", "swf": "application/x-shockwave-flash", "woff": "application/x-font-woff" }</code></pre> <p>这个表不一定全根据自己的需求添加即可。</p> <p>回调函数里的部分就变成</p> <pre> <code class="language-javascript">var filename = __dirname+url.parse(req.url).pathname; var extname = path.extname(filename); //扩展名含点号如'.html',截掉 extname = extname ? extname.slice(1) : 'unknown'; //映射表中查找请求的资源的MIME类型并返回,没有映射均返回'text/plain'类型 var resContentType = mime[extname] || 'text/plain';</code></pre> <h3>移动端要可以访问</h3> <p>其实这个与nodejs代码并没有必然的联系,移动端访问本机的两个条件(服务器没有请求限制的情况下,如apache需要修改一些配置文件):</p> <ul> <li> <p>把你的 localhost 改成 192.168.0.xxx</p> </li> <li> <p>手机的网络要与电脑在同一网段(如用的同一个WIFI)</p> </li> </ul> <p>当然也可以手动到cmd中ipconfig一下看看本机的ip地址,这里我额外加了os模块用于获取本机系统的ip,图个方便,当然这个不是静态服务器必须的要素。</p> <p>最后的server.js的全部代码也就很小的一段,就可以当静态服务器了。复制一份扔在一些需要查看的文件夹的根目录就可以充当小型服务器进行example浏览和测试了。</p> <p>最后附上完整代码:</p> <pre> <code class="language-javascript">var http = require('http'), url = require('url'), path = require('path'), fs = require('fs'), os = require('os'); function getIPv4(){ var interfaces = os.networkInterfaces();//获取网络接口列表 var ipv4s = [];//同一接口可能有不止一个IP4v地址,所以用数组存 Object.keys(interfaces).forEach(function (key){ interfaces[key].forEach(function (item){ //跳过IPv6 和 '127.0.0.1' if ( 'IPv4' !== item.family || item.internal !== false )return; ipv4s.push(item.address);//可用的ipv4s加入数组 console.log(key+'--'+item.address); }) }) return ipv4s[0];//返回一个可用的即可 } var mime = { "html": "text/html", "htm": "text/html", "css": "text/css", "js": "text/javascript", "xml": "text/xml", "json": "application/json", "jpg": "image/jpeg", "jpeg": "image/jpeg", "png": "image/png", "gif": "image/gif", "bmp": "image/bmp", "svg": "image/svg+xml", "ico": "image/x-icon", "mp3": "audio/mpeg", "wav": "audio/x-wav", "mp4": "video/mp4", "swf": "application/x-shockwave-flash", "woff": "application/x-font-woff" } var server = http.createServer(function (req,res){ var filename = __dirname+url.parse(req.url).pathname; var extname = path.extname(filename); //扩展名含点号如'.html',截掉 extname = extname ? extname.slice(1) : 'unknown'; //映射表中查找请求的资源的MIME类型并返回,没有映射均返回'text/plain'类型 var resContentType = mime[extname] || 'text/plain'; fs.exists(filename,function (exists){ if (!exists){ //文件不存在返回404 res.writeHead(404,{'Content-Type':'text/plain'}); res.write('404 Not Found'); res.end(); }else { //文件存在读取并返回 fs.readFile(filename,function (err,data){ if (err){ res.writeHead(500,{'Content-Type':'text/plain'}); res.end(err); }else{ res.writeHead(200,{'Content-Type':resContentType}); res.write(data); res.end(); } }) } }) }); server.listen('8080',function (){ console.log('server start on: '+getIPv4()+':8080'); })</code></pre> <p> </p> <p>来自: <a href="/misc/goto?guid=4959675244171986362" rel="nofollow">https://segmentfault.com/a/1190000005927871</a></p> <p> </p>