ming_node 2.4.0 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/beforeTest/test.js +8 -0
  2. package/index.js +2502 -2471
  3. package/package.json +1 -1
@@ -0,0 +1,8 @@
1
+ var M=require("../index");
2
+
3
+ app=M.server()
4
+ app.listen(8888)
5
+
6
+ app.get(["/h15","/h16","/h18888"],(req,res)=>{
7
+ res.send("BBBB")
8
+ })