我是Compoundjs的新手,已经开始为compoundjs创建helloworld示例。

我尝试使用默认生成器,但是在我的应用中,唯一可用的生成器是app
其余的controllermodel都丢失了。

下面是我在终端中键入compound时的输出

Usage: compound command [argument(s)]

Commands:
  h,  help                Display usage information
  i,  init                Initialize compound app
  g,  generate [smth]     Generate something awesome
  r,  routes [filter]     Display application routes
  c,  console             Debug console
  s,  server [port]       Run compound server
  x,  install [module]    Install compound module
  sd, seed plant|harvest  Populate database with seed data
  db, db [migrate|update] Migrate or update database(s)

Available generators:

  app


我究竟做错了什么?请提出建议。

仅供参考:我的复合版本为1.1.0

最佳答案

找到解决方案。

在package.json中添加了缺少的模块co-generators,从而解决了该问题。

09-18 10:49