Node.js的基本使用之express

1.基本使用
var express require('express')
var app express()
 
app.get('/'function (reqres{
  res.send('Hello World')
})
 
app.listen(3000)
 
2.变形
 
 
 
 
 
原文地址:https://www.cnblogs.com/jsjx-xtfh/p/9822901.html