用到的 node 常见操作备忘

读写文件

fs.readFileSync(path,"utf-8") : string

读资源下所有目录

fs.readdirSync : Array

node 打印内容颜色

node 修改输出颜色有两个做法

使用 color.js

非常简单好用的工具,如何使用文档说的很清楚

var colors = require('colors');

console.log('hello'.green); // outputs green t......

EcmaScript甜甜的糖——装饰器

装饰器(Decorator)语法

用途:

1.装饰类

2.装饰方法或属性

用法

装饰器函数可以接受三个参数: target , prop ,descriptor

descriptor 有四个属性

configurable:false,//能否使用delete、能否需改属性特性......