使用gulp和mocha的项目有什么好的文件结构?

时间:2017-01-14 18:21:04

标签: node.js gulp mocha

问题 - 使用Gulp和Mocha的小型项目有什么好的文件结构?我的所有gulp和测试文件都在浮动的根文件夹中,我知道我应该将它们分成文件夹,我正在寻找如何为这些特定工​​具做到这一点的好例子。

/rootFolder
    /.git
    /node_modules
    eslinrtrc.js
    .gitignore
    app.js
    gulpfile.js
    index.html
    package.json
    test.js

1 个答案:

答案 0 :(得分:-2)

我使用这样的东西对我来说非常有用:

/node_modules
/src
  app.js
  index.html
/tools
  /gulp
     gulpfile.js
  /mocha
     test.js
package.json
eslinrtrc.js

TL; DR:我正在为我使用的每个工具制作一个带有子文件夹的工具文件夹,在你的情况下gulp和mocha并在子文件夹中添加文件;)

黑客提示:用npm脚本替换gulp,你会发现这完全值得;)