1.0.0 • Published 11 months ago

@kachanovski/fsdnew v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

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/fsdnew

For 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 ThemeToggle

or

yarn addnew feature themeToggle

This 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 router

This will create a new router.ts file in your src/6_shared directory.

License

MIT

1.0.0

11 months ago