美文网首页
node.js静态页面服务器

node.js静态页面服务器

作者: Weiliam | 来源:发表于2016-08-09 23:28 被阅读0次

node.js静态页面服务器

const http = require('http');

const url require('url');

const fs require('fs');

const ip = '192.168.130.2';

const port = 3000;

fs.readFile('/etc/passwd',(err,data) =>{

if(err) throw err;

console.log(data);

});

var f= function(req,res){

var pathname = url.parse(req.url).pathname;

res.write(pathname);

res.end();

}

var f2 = function(){

console.log('server start')

}

相关文章

  • node.js静态页面服务器

    node.js静态页面服务器 const http = require('http'); const url re...

  • 当前文集 node.js 写一个静态资源服务器记录,是为了给自己学习用 node.js 写静态资源服务器做一个记录...

  • 服务器缓存

    业务服务器缓存 业务服务器缓存是将动态页面直接生成静态的页面放在服务器上的硬盘里,用户调取相同页面时,静态页面将直...

  • angular部署服务器

    1前端展示数据静态页面:定义没有和服务器进行处理的页面静态页面:动画,

  • IT兄弟会全栈工程师01班第四课笔记

    本课重点:学习如何用Node.js创建一个静态网站服务器,并实现根据用户请求的不同的URL,响应对应的页面。掌握其...

  • PHP中9大缓存技术总结

    1、全页面静态化缓存 也就是将页面全部生成html静态页面,用户访问时直接访问的静态页面,而不会去走php服务器解...

  • PHP中9大缓存技术总结

    1、全页面静态化缓存 也就是将页面全部生成html静态页面,用户访问时直接访问的静态页面,而不会去走php服务器解...

  • 创建个人静态博客

    思路: 本地使用Hexo生成静态页面(html) 上传到WEB服务器 1、 安装Hexo 及生成静态页面 安装No...

  • Apache 和Tomcat组合

    一、前言 1. Apache是Web服务器,它支持静态页面,有很好的静态页面处理能力;Tomcat是应用(...

  • python 简单的web静态服务器

    python 简单的web静态服务器 原理步骤: web静态服务器:显示固定页面 准备名为web_server的p...

网友评论

      本文标题:node.js静态页面服务器

      本文链接:https://www.haomeiwen.com/subject/qcwdsttx.html