随笔分类 -  node.js

摘要:var str = "hello world!"; var new_str = str.toUpperCase(); conlose.log(new_str); HELLO WORLD! new_str = str.toLowerCase(); hello world! 阅读全文
posted @ 2018-10-10 15:06 柳刚 阅读(845) 评论(0) 推荐(0)
摘要:使用NodeJS+Express开发服务端。 一 准备工作 首先你需要安装NodeJS环境 这里不再做介绍,1.安装Express ? 1 2 npm install express -g npm install express-generator -g ? 1 2 npm install expr 阅读全文
posted @ 2018-01-03 17:07 柳刚 阅读(362) 评论(0) 推荐(0)