Nodejs
AXiBaCccccccc
这个作者很懒,什么都没留下…
展开
-
node,nrm,vue-cli等安装方法mac与win系统的区别
今天刚换了macbookpro,记录一下环境和开发中Mac和win中的区别1.node的区别在win中,使用的是cmd,而在mac中使用的是终端。node直接在官网下载不同版本的就好。最后node-v检查一下是否安装成功。2.nrm的区别在win中,我们可以直接npm I nrm -g就可以直接安装,nrm ls 可以直接查看源,nrm use taobao可以切换成淘宝源。而在mac中就不一样了。必须在命令前面加上:sudo,从而获取权限。如:sudo npm i nrm -g;之后在原创 2020-05-15 16:43:00 · 623 阅读 · 0 评论 -
Node.js服务器的建立
let http = require(“http”);http.createServer(function(req, res) {res.writeHead(200, { ‘Content-Type’: ‘text/plain’ });res.end(‘holle’);}).listen(8000);console.log(‘服务器启动’)//检测服务器是否启动的提示//终端输入 no...原创 2019-07-15 19:41:17 · 149 阅读 · 0 评论 -
nodejs一个简单聊天工具
//----------------------------------------------------------------server 服务器const net = require(‘net’);const server = net.createServer();const host = ‘localhost’;const port = 6000;let count = 0;...原创 2019-07-18 19:09:02 · 178 阅读 · 0 评论 -
接口的暴露
普通版如: 增 : http://localhost:3000/shopcar/add 删 : http://localhost:3000/shopcar/del 改 : http://localhost:3000/shopcar/update 查 : http://localhost:3000/shopca...原创 2019-07-19 16:43:13 · 415 阅读 · 0 评论 -
express-generator 生成器 --【 脚手架 】
如何使用?安装 【 两种方式 】全局安装$ cnpm i express-generator -gexpress -e 项目名称不使用全局安装,使用npx生成,但是要求npx对应的npm版本在 5.2 以上,npm5.2版本以上自动携带npx第二种方式使用$ npx express -e 项目名称 -e表示使用ejs模板 -e是可以换的项目目录结构bi...原创 2019-07-19 16:45:25 · 255 阅读 · 0 评论