我刚刚克隆了 meanjs 项目,但为什么没有应用程序文件夹?

I just cloned meanjs project but there is no app folder why?

您好,我刚刚克隆了 meanjs 项目,不知何故该项目下没有 app 文件夹。为什么他们改变了结构?难道我做错了什么?抱歉,只是尝试学习 Node,我跟进的其中一个教程正在使用该项目

Meanjs project github link

看起来新版本 0.4.0 已经合并到 master 分支并且它有一个新的文件夹结构,如果你想使用具有文件夹结构的版本 0.3.x你提到你可以克隆最新的标记 0.3.3 版本:

git clone --branch v0.3.3 https://github.com/meanjs/mean.git

这将检出到具有 0.3.3(当前最新 0.3.x)版本和您正在查找的文件夹结构的 'detached HEAD' 分支。

克隆此版本后,您可以使用 yeoman generator 从那里创建模板项目。

The app folder is removed, which is the major concern for the noobs trying their hands on MEANjs following the older tutorials. Controllers,views, models are now moved into a separate folder called modules which was previously in the public folder. You can explore modules/core/server and modules/user/server of your project

未来的人 运行 遇到同样的问题。

学分转到 pooja's answer at this thread