Lang. - Node.js
文章平均质量分 60
钟超
阿里巴巴集团总监/资深综合运营专家,连续创业者,关于 AI、电商、社交媒体领域,毕业于中国科学技术大学计算机系本科。
展开
-
Introduction to Node.js(2)
Introduction to Node.js(2)by Poechant (blog.csdn.net/poechant)1 How to recognize your Node.js files?Node-js |--- index.js |--- server.js index.js:var server = require("./server.js"); server.start(); s原创 2012-09-02 13:06:00 · 3775 阅读 · 0 评论 -
Introduction to Node.js(1)
Introduction to Node.js(1)by Poechant (blog.csdn.net/poechant)1 Hello World$ sudo port install nodejs $ echo "console.log(\"Hello World\");" > helloword.js $ node helloworld.js 2 A simple TCP serverCr原创 2012-09-02 12:45:54 · 3824 阅读 · 0 评论