20 lines
262 B
Markdown
20 lines
262 B
Markdown
## Examples
|
|
|
|
##### Create app in a nested directory
|
|
|
|
```shell
|
|
nx g app apps/nested/myapp
|
|
```
|
|
|
|
##### Use a custom Express server
|
|
|
|
```shell
|
|
nx g app apps/myapp --custom-server
|
|
```
|
|
|
|
##### Use plain JavaScript (not TypeScript)
|
|
|
|
```shell
|
|
nx g app apps/myapp --js
|
|
```
|