Awesome
#Node Ace Editor
###介绍 使用node-webkit封装ace编辑器。
使用了:
##安装
npm install
##编译
修改Gruntfile.js设置需要编译的版本。
grunt.initConfig({
nodewebkit: {
options: {
build_dir: './build',
credits: './src/credits.html',
mac: true, // build it for mac
win: false, // build it for win
linux32: false, // build it for linux32
linux64: false, // build it for linux64
},
src: './src/**/*'
},
});
输入grunt
进行编译,编译后的版本会在build目录下。
不编译运行
直接输入nw src [filename]
运行。
截图
###支持markdown预览