读写文件
fs.readFileSync(path,"utf-8") : string
读资源下所有目录
fs.readdirSync : Array
node 修改输出颜色有两个做法
使用 color.js
非常简单好用的工具,如何使用文档说的很清楚
var colors = require('colors');
console.log('hello'.green); // outputs green t......
事件
onopen 、onmessage、onclose
方法
send() close()
var ws = new WebSocket("wss://echo.websocket.org");
ws.onopen = function(evt) {
consol......