nx/docs/shared/recipes/generators/creating-files.md
Jack Hsu 8fa7065cf1
docs(misc): update generator examples to use new directory/path positional args (#28144)
This PR updates examples in `.md` files (both docs and blog posts) to
use positional args. Nx 20 changes the position arg to be either
`directory` for apps/libs or `path` for artifacts (e.g. components).

So before you'd do this:

```
nx g app myapp --directory=apps/myapp
nx g lib mylib --directory=libs/mylib
nx g lib mylib --directory=libs/nested/mylib
nx g lib @acme/foo --directory=libs/@acme/foo --importPath=@acme/foo
nx g component foo --directory=libs/ui/src/foo --pascalCaseFiles
```

Will now be simplified to

```
nx g app apps/myapp
nx g lib libs/mylib
nx g lib libs/nested/mylib
nx g lib libs/@acme/foo # name and import path are both "@acme/foo"
nx g component libs/ui/src/foo/Foo
```

For cases where `name` and `importPath` need to be changed, you can
always manually specify them.

```
nx g lib libs/nested/foo # name is foo
nx g lib libs/nested/foo --name=nested-foo # specify name with prefix
nx g lib libs/@acme/foo --name # use "foo" as name and don't match importPath
nx g lib libs/@internal/foo --importPath=@acme/foo # different importPath from name

<!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR -->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is merged. -->

Fixes #
2024-09-30 13:20:10 -04:00

162 lines
4.7 KiB
Markdown

# Creating files with a generator
Generators provide an API for managing files within your workspace. You can use generators to do things such as create, update, move, and delete files. Files with static or dynamic content can also be created.
The generator below shows you how to generate a library, and then scaffold out additional files with the newly created library.
First, you define a folder to store your static or dynamic templates used to generated files. This is commonly done in a `files` folder.
```text
happynrwl/
├── apps/
├── libs/
│ └── my-plugin
│ └── src
│ └── generators
│ └── my-generator/
│ ├── files
│ │ └── NOTES.md
│ ├── index.ts
│ └── schema.json
├── nx.json
├── package.json
└── tsconfig.base.json
```
The files can use EJS syntax to substitute variables and logic. See the [EJS Docs](https://ejs.co/) to see more information about how to write these template files.
Example NOTES.md:
```markdown
Hello, my name is <%= name %>!
```
Next, update the `index.ts` file for the generator, and generate the new files.
```typescript {% fileName="index.ts" %}
import {
Tree,
formatFiles,
installPackagesTask,
generateFiles,
joinPathFragments,
readProjectConfiguration,
} from '@nx/devkit';
import { libraryGenerator } from '@nx/js';
export default async function (tree: Tree, schema: any) {
await libraryGenerator(tree, {
name: schema.name,
directory: `libs/${schema.name}`,
});
const libraryRoot = readProjectConfiguration(tree, schema.name).root;
generateFiles(
tree, // the virtual file system
joinPathFragments(__dirname, './files'), // path to the file templates
libraryRoot, // destination path of the files
schema // config object to replace variable in file templates
);
await formatFiles(tree);
return () => {
installPackagesTask(tree);
};
}
```
The exported function first creates the library, then creates the additional files in the new library's folder.
Next, run the generator:
{% callout type="warning" title="Always do a dry-run" %}
Use the `-d` or `--dry-run` flag to see your changes without applying them. This will let you see what the command will do to your workspace.
{% /callout %}
```shell
nx generate my-generator mylib
```
The following information will be displayed.
```{% command="nx generate my-generator mylib" %}
CREATE libs/mylib/README.md
CREATE libs/mylib/.babelrc
CREATE libs/mylib/src/index.ts
CREATE libs/mylib/src/lib/mylib.spec.ts
CREATE libs/mylib/src/lib/mylib.ts
CREATE libs/mylib/tsconfig.json
CREATE libs/mylib/tsconfig.lib.json
UPDATE tsconfig.base.json
UPDATE nx.json
CREATE libs/mylib/.eslintrc.json
CREATE libs/mylib/jest.config.ts
CREATE libs/mylib/tsconfig.spec.json
UPDATE jest.config.ts
CREATE libs/mylib/NOTES.md
```
`libs/mylib/NOTES.md` will contain the content with substituted variables:
```markdown
Hello, my name is mylib!
```
## Dynamic File Names
If you want the generated file or folder name to contain variable values, use `__variable__`. So `NOTES-for-__name__.md` would be resolved to `NOTES_for_mylib.md` in the above example.
## Overwrite mode
By default, generators overwrite files when they already exist.
You can customize this behaviour with an optional argument to `generateFiles` that can take one of three values:
- `OverwriteStrategy.Overwrite` (default): all generated files are created and overwrite existing target files if any.
- `OverwriteStrategy.KeepExisting`: generated files are created only when target file does not exist. Existing target files are kept as is.
- `OverwriteStrategy.ThrowIfExisting`: if a target file already exists, an exception is thrown. Suitable when a pristine target environment is expected.
## EJS Syntax Quickstart
The [EJS syntax](https://ejs.co/) can do much more than replace variable names with values. Here are some common techniques.
1. Pass a function into the template:
```typescript
// template file
This is my <%= uppercase(name) %>
```
```typescript
// typescript file
function uppercase(val: string) {
return val.toUpperCase();
}
// later
generateFiles(tree, join(__dirname, './files'), libraryRoot, {
uppercase,
name: schema.name,
});
```
2. Use javascript for control flow in the template:
```typescript
<% if(shortVersion) { %>
This is the short version.
<% } else {
for(let x=0; x<numRepetitions; x++) {
%>
This text will be repeated <%= numRepetitions %> times.
<% } // end for loop
} // end else block %>
```
```typescript
// typescript file
generateFiles(tree, join(__dirname, './files'), libraryRoot, {
shortVersion: false,
numRepetitions: 3,
});
```