from http://sweetjs.org/
Sweet.js 给js带来了类似 Rust Scheme 等语言中的卫生宏。宏让你设计可爱的语法,并定制出心中一直想要的语言。
想要 class 语法,但不像等es6 ?自己添加这个语法,只需要用几行代码:
javascript
// 这儿,定义 class 宏 ... macro class { rule { $className { constructor $cparams $cbody $($mname $mparams $mbody) ... } } => { function $className $cparams $cbody $($className.prototype.$mname = function $mname $mparams $mbody; ) ... } } // 现在 classes 来到了 JavaScript! class Person { constructor(name) { this.name = name; } say(msg) { console.log(this.name + " says: " + msg); } } var bob = new Person("Bob"); bob.say("Macros are sweet!");
要更好的体验宏的作用,看看 https://github.com/mozilla/sweet.js/wiki/Example-macros ,或者玩玩我们的在线编辑器 http://sweetjs.org/browser/editor.html
获得 sweet.js
npm 安装
$ npm install -g sweet.js
编译输出到文件
sjs -o output.js my_sweet_code.js
接下来
- 读文档 http://sweetjs.org/doc/main/sweet.html
- 在线编辑器写一点宏 http://sweetjs.org/browser/editor.html
- 报告问题 https://github.com/mozilla/sweet.js/issues
- 来 irc 求救 at #sweet.js on irc.mozilla.org
- 加入我们的邮件组 https://groups.google.com/forum/#!forum/sweetjs
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。