
node
likeuzi
热爱技术,渴望新知识
展开
-
path.resolve([from ...], to)
path.resolve([from ...], to)由于该方法属于path模块,使用前需要引入path模块(var path= require(“path”) )接收参数:from 源路径to 将被解析到绝对路径的字符串例子:代码如下:path.resolve('/foo/b翻译 2017-05-08 13:47:46 · 1250 阅读 · 0 评论 -
node第一天文件3
var http = require("http");//创建服务器,参数是一个回调函数,表示如果有请求进来,要做什么var server = http.createServer(function(req,res){ if(req.url == "/home"){ res.writeHead(200,{"Content-type":"text/html;charse原创 2017-11-14 14:25:51 · 405 阅读 · 0 评论 -
阮一峰的nodejs讲解
http://javascript.ruanyifeng.com/nodejs/fs.html原创 2017-11-14 15:54:25 · 11503 阅读 · 0 评论 -
express源码(1)
var http = require("http");var Application = function(){//js当中没有明确的构造器概念,都是以首字母大写来区分 //保存路由 this.router = [{ path:"*", fn:function(req,res){ res.writeHead(404,{"原创 2017-11-20 22:31:26 · 175 阅读 · 0 评论 -
express(2)
var http = require("http");var Application = function(){//js当中没有明确的构造器概念,都是以首字母大写来区分 //保存路由 this.router = [{ path:"*", fn:function(req,res){ res.writeHead(404,{"原创 2017-11-20 22:32:01 · 193 阅读 · 0 评论 -
express源码(3)
//express.jsvar Application = require("./application");function createApplication(){ var app = new Application(); return app;}exports = module.exports = createApplication;//index.js原创 2017-11-20 22:33:54 · 172 阅读 · 0 评论 -
node api
//url.jsconst http = require("http");//write写入的永远是文本,只是浏览器解析成了html页面const server = http.createServer(function(req,res){ res.writeHead(200,{"Content-type":"text/html;charset='UTF-8"}); res原创 2017-11-20 22:40:38 · 7733 阅读 · 0 评论 -
从express源码中探析其路由机制
http://cnodejs.org/topic/545720506537f4d52c414d87原创 2018-01-18 11:27:15 · 218 阅读 · 0 评论 -
node中间件
写在前面前面的文章里也介绍过了,Express 是一个简洁、灵活的 node.js Web 应用开发框架, 它提供一系列强大的特性,帮助你创建各种 Web 和移动设备应用。Express项目的底层由许多的中间件在协同工作,可以这么说,一个Express 应用就是在调用各种中间件。什么是中间件中间件是一个可访问请求对象(req)和响应对象(res)的函数,在 Express 应用的请转载 2018-01-27 13:09:10 · 2093 阅读 · 0 评论 -
谈一谈node中get post use
app.use和app.get的区别及解析结论先说我发现的结论:app.use(path,callback)中的callback既可以是router对象又可以是函数app.get(path,callback)中的callback只能是函数那么,什么时用app.use,什么时用app.get呢?路由规则是app.use(path,router)定义的,router代表原创 2018-01-27 13:28:32 · 426 阅读 · 0 评论 -
node第一天-文件2
var http = require("http");//变量http得到被引入模块"http"的所有接口//创建服务器,参数是一个回调函数,表示如果有请求进来,要做什么var server = http.createServer(function(req,res){ res.writeHead(200,{"Content-type":"text/html;charset=UTF-8"原创 2017-11-14 14:24:52 · 186 阅读 · 0 评论 -
node第一天-helloworld
/* 客户端(打开url):向服务器发送一个请求(请求信息封装在request) 服务器(接受请求):返回对应数据(响应由response来操作) 服务模块: 打开服务:启动服务 node filename.js 注意事项: 1、Node没有Web容器概念 http://localhost:3001/think:并不会发生任何报错,也不会有任何区别,都是原创 2017-11-14 14:23:20 · 157 阅读 · 0 评论 -
事件驱动,线程池,非阻塞,异常处理(node大神的有时间常看)
http://blog.youkuaiyun.com/Tyro_java/article/details/51290419转载 2017-07-31 21:32:22 · 317 阅读 · 0 评论 -
事件循环的原理
http://www.cnblogs.com/jasonxuli/p/6074231.html原创 2017-08-01 10:24:56 · 347 阅读 · 0 评论 -
全局变量
1.process 和 console等等都是全局变量 :因为是全局对象global的属性,在DOM中的document也一样原创 2017-08-01 18:50:18 · 266 阅读 · 0 评论 -
项目中常见的一些问题
1.如何让一个div水平垂直居中? .mydiv{ width:300px; height:200px; position:absolute; left:50%; top:50%; margin:-100px 0 0 -150px原创 2017-08-15 14:51:53 · 365 阅读 · 0 评论 -
node核心模块之path
// PATH模块的使用const path = require('path');//join()连接成一个合法路径const temp = path.join(__dirname, './../lyrics/血染的风采.lrc');// path.basename(src) // 获取传入路径中最后的文件名=> 血染的风采.lrc console.log(path.basena原创 2017-08-15 18:16:11 · 398 阅读 · 0 评论 -
node核心模块之读取文件
// 基本的读取文件const fs = require("fs");const path = require("path");//异步读取文件console.time('async');fs.readFile(path.join(__dirname,"../world/name.txt"),"utf8",(error,data)=> { if(error) throw erro原创 2017-08-15 18:03:32 · 396 阅读 · 0 评论 -
node中的异步
'use strict'; const fs = require('fs'); // 模拟异步 console.time('setout'); setTimeout(function(){ console.timeEnd('setout'); },0); setImmed原创 2017-08-15 18:35:33 · 241 阅读 · 0 评论 -
美团关于nodestream流的解释
http://fe.meituan.com/archives转载 2017-09-15 14:08:39 · 267 阅读 · 0 评论 -
https://segmentfault.com/u/manxisuo这个node大神
https://segmentfault.com/u/manxisuo原创 2017-09-12 17:48:09 · 642 阅读 · 0 评论 -
nodesj中 中间件express-session的理解
1.http://blog.youkuaiyun.com/u012679583/article/details/505107172.https://www.jianshu.com/p/5a0ccd1ee27e原创 2018-01-30 14:53:25 · 220 阅读 · 0 评论