本地便携式咕噜声分布?

时间:2014-01-21 03:13:26

标签: html node.js gruntjs

我目前正在使用嵌入了node.js的Node-Webkit创建我的工作流的可移植整合。现在我的问题是在项目本身内变得咕噜咕噜/ gulp,因为它在某种程度上取决于cli(可避免,被授予),并且在架构上也让我感到困惑。是否有可能只找到一个带有咕噜声的.js,就像Jquery / Handlebars一样?

Is this all I need to just include and run?

1 个答案:

答案 0 :(得分:0)

之前没有确保您的环境正常运行,请获取 package.json,GruntFile.js 文件。在 GruntFile.js 中,您可以指定要预处理的内容。例如 jade,Less,coffee 。它看起来非常像节点函数,对于样本,您可以参考link

现在要完成这项工作,您还需要根据您的要求安装各种 contrib插件。然后在 GruntFile.js 中注册每个任务。它真的加快了发展。

  grunt.loadNpmTasks('grunt-contrib-less');
  grunt.loadNpmTasks('grunt-contrib-jade');
  grunt.loadNpmTasks('grunt-contrib-coffee');
  grunt.registerTask('test', ['jade', 'less','coffee']);

为了处理 less,jade,coffee ,我们需要运行模块安装,例如

npm install grunt --save-dev    
npm install grunt <module name> --save-dev

有许多有趣的配置需要学习,文档非常好,请参考getting started guide 这会将所需的Grunt和grunt插件添加到 package.json