2.11.2 • Published 4 years ago

nx-loopback-next-cli v2.11.2

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

nx-loopback-next-cli (@loopback/cli fork)

Nx friendly @loopback/cli (official CLI for LoopBack 4)

Installation

Run the following command to install the CLI.

yarn add nx-loopback-next-cli

Basic Use

Run nx-lb4 --commands or nx-lb4 -l to list all available commands:

See CLI reference for a detailed documentation.

Usage w/ loopback 4

  1. Generate a loopback app w/ nx-loopback-next ;
  2. Update your workspace.json file :

    {
      "projects": {
        "{{YOUR_PROJECT}}": {
          // ...
          "architect": {
            // ...
            "model": {
              "builder": "@nrwl/workspace:run-commands",
              "options": {
                "command": "nx-lb4 model --appDir={{YOUR_PROJECT}}"
              }
            }
          }
        }
      }
    }
  3. Use the new command :

    nx model gateway

Changes from official repo

  • artifact-generator gets a new option appDir (default: process.cwd()) ;
  • Every generators making use of utils.sourceRootDir are updated to prepend appDir ;

"Fixed" commands

  • model
  • datasource
  • controller
  • interceptor
  • observer
  • openapi
  • relation
  • repository
  • rest-crud
  • service

License

MIT