nx/docs/schematics/node-application.md

23 lines
1.0 KiB
Markdown

# node-application
Create a NodeJS Application
## Usage
```bash
ng generate node-application ...
```
### Options
| Name | Alias | Description | Type | Default value |
| ----------------- | ----- | ---------------------------------------------- | ------- | ------------- |
| `name` | | The name of the application. | string | `undefined` |
| `directory` | | The directory of the new application. | string | `undefined` |
| `framework` | | Node Framework to use for application. | string | `express` |
| `skipFormat` | | Skip formatting files | boolean | `false` |
| `skipPackageJson` | | Do not add dependencies to package.json. | boolean | `false` |
| `unitTestRunner` | | Test runner to use for unit tests | string | `jest` |
| `tags` | | Add tags to the application (used for linting) | string | `undefined` |