Gruntjs 具有许多不同应用程序的yeoman框架

Gruntjs 具有许多不同应用程序的yeoman框架,gruntjs,yeoman,bower,enyo,Gruntjs,Yeoman,Bower,Enyo,我喜欢单页应用程序的yo框架。现在我想在一个yo框架下创建更多的应用程序,所以我需要一个grunt文件。假设我将angular bootplate用作前端web的单个应用程序,现在我想使用enyo bootplate添加一个基于enyo应用程序的应用程序。如何在现有框架中添加新的enyo应用程序,以便在用户调用时从主web加载app2?这样的多应用程序框架的最佳实践是什么 这是我目前的结构 . ├── Gruntfile.js ├── README.md ├── app │   ├── 404.

我喜欢单页应用程序的yo框架。现在我想在一个yo框架下创建更多的应用程序,所以我需要一个grunt文件。假设我将angular bootplate用作前端web的单个应用程序,现在我想使用enyo bootplate添加一个基于enyo应用程序的应用程序。如何在现有框架中添加新的enyo应用程序,以便在用户调用时从主web加载app2?这样的多应用程序框架的最佳实践是什么

这是我目前的结构

.
├── Gruntfile.js
├── README.md
├── app
│   ├── 404.html
│   ├── favicon.ico
│   ├── images
│   ├── index.html
│   ├── pages
│   ├── robots.txt
│   ├── scripts
│   └── styles
├── bower.json
├── bower_components
│   ├── a0-angular-storage
│   ├── angular
    ......
├── config
│   ├── config.js
│   └── environments
├── dist
│   ├── 404.html
│   ├── bower_components
│   ├── favicon.ico
│   ├── images
│   ├── index.html
│   ├── pages
│   ├── robots.txt
│   ├── scripts
│   └── styles
├── node_modules
│   ├── generator-env-config
    ........
│   └── yo
├── notes.txt
├── package.json
└── test
    ├── karma.conf.js
    └── spec
这就是我认为我必须改变的

├── Gruntfile.js
├── README.md
├── app
│   ├── 404.html
│   ├── favicon.ico
│   ├── images
│   ├── index.html
│   ├── pages
│   ├── robots.txt
│   ├── scripts
│   └── styles
│   ├── app2
│       ├── Gruntfile.js
│       ├── README.md
│       ├── assets
│       ├── bower.json
│       ├── debug.html
│       ├── deploy.json
│       ├── deploy.md
│       ├── enyo
│       ├── icon.png
│       ├── index.html
│       ├── lib
│       ├── node_modules
│       ├── package.js
│       ├── package.json
│       ├── source
│       ├── tasks
│       └── tools
├── bower.json
├── bower_components
│   ├── a0-angular-storage
│   ├── angular
    ......
├── config
│   ├── config.js
│   └── environments
├── dist
│   ├── 404.html
│   ├── bower_components
│   ├── favicon.ico
│   ├── images
│   ├── index.html
│   ├── pages
│   ├── robots.txt
│   ├── scripts
│   └── styles
├── node_modules
│   ├── generator-env-config
    ........
│   └── yo
├── notes.txt
├── package.json
└── test
    ├── karma.conf.js
    └── spec

它不是一个框架,它是一个脚手架工具。你可以将它用于任何你想使用的框架。你能推荐一个使用grunt的框架吗?