Codemods
Codemods are transformations that run on your codebase programmatically. This allows a large number of changes to be programmatically applied without having to manually go through every file.
Catalyst provides Codemod transofrmation to add new route in your application.
Create new route
To create new route in your application you have to execute following command in the project root directory.
terminal
npx [email protected] new-route
Upon successful execution, you will see the following prompts in your terminal:
- Choose state management template being used (Redux, Rtk, None).
- Enter the route path.
- Enter the component name for new route.
Once you have provided input, new component will be created with the provided name and route object will be added inside routes array present in src/js/routes/index.js.