@kachanovski/fsdnew v1.0.0
fsdnew
fsdnew is a command-line utility designed to simplify the creation of new components in your feature-sliced architecture.
This tool supports the generation of various component types such as pages, widgets, features, entities, and shared. It also takes care of correctly updating paths in your tsconfig.json file.
Installation
yarn add -D @kachanovski/fsdnewFor easier access, you can add it to the scripts section of your package.json:
"scripts": {
"fsdnew": "npx @kachanovski/fsdnew"
}Usage
To create a new component, use the following syntax:
npx @kachanovski/fsdnew <component_type> <component_name><component_type> should be one of the following:
- page
- widget
- feature
- entity
- shared
<component_name> is the name of your new component.
For example, to create a new feature named ThemeToggle, you would run:
npx @kachanovski/fsdnew feature ThemeToggleor
yarn addnew feature themeToggleThis will create a new directory in your src/4_features directory named ThemeToggle, with a React component file (ThemeToggle.tsx) and an index.ts file.
Note
For shared type, it just creates a single .ts file instead of a full component structure. For example:
npx @kachanovski/fsdnew shared routerThis will create a new router.ts file in your src/6_shared directory.
License
MIT
3 years ago