@nrwl/nest:resource
Nest Resource Options Schema.
Usage
nx generate resource ...
By default, Nx will search for resource
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/nest:resource ...
Show what will be generated without writing to disk:
nx g resource ... --dry-run
Options
crud
true
When true, CRUD entry points are generated.
directory
Directory where the generated files are placed.
flat
false
Flag to indicate if a directory is created.
language
js
, ts
Nest class language.
name
The name of the resource.
project
The Nest project to target.
skipFormat
false
Skip formatting files.
skipImport
false
Flag to skip the module import.
type
rest
rest
, graphql-code-first
, graphql-schema-first
, microservice
, ws
The transport layer.
unitTestRunner
jest
jest
, none
Test runner to use for unit tests.