fs 文件系统
fs.readFile
fs.readFile(path,callback) 异步读取文件
fs.writeFile
fs.writeFile(path,data,callback) 写入文件
fs.open
fs.open(path,data,callback) 打开文件
fs.unlink
fs.unlink(path,callback) 删除文件
fs.mkdir
fs.mkdir(path,option,callback) 创建文件
path 模块
path.extname
path.extname(urlString) 获取文件后缀名
url 路由模块
url.parse()
url.parse(urlString,parseQueryString,slashesDenoteHost) 字符串类型解析成对象
url.parse().pathname
url.parse(string).pathname 获取 / 后 不包括 ? 后的信息
url.parse().query
url.parse(string).query获取到地址 ? 后的内容
querystring 模块
querystring.parse()
querystring.parse(str,separator,eq,options)将字符串解析成对象
querystring.stringify()
querystring.stringify(str,separator,eq,options)将对象解析成字符串
http 模块
使用 http 搭建服务器
//引入 http 内置模块
var http = require('http')
//创建服务器
http.createServer(function(req,res){
//写入请求或响应
}).listen(3000,function(){
//监听
console.log('running...')
})