继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

node搭建简易资源服务器

什么鬼_呀你
关注TA
已关注
手记 21
粉丝 4
获赞 25
const http=require('http'),
  fs=require('fs'),
  url=require('url'),
  app=http.createServer((req,res)=>{
      let pathname=url.parse(req.url).pathname;
      console.log(pathname);
      if(pathname=='/')pathname+='index.html'
      fs.readFile('.'+pathname,(err,data)=>{
      if(err)console.log('not found!')
         res.end(data)
        })
  });
app.listen(3000,()=>console.log('server is running 3000...'))

将它放在根目录下,over!!!

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP