Skip to content

Cli tool to generate react components with boiler plate code

License

Notifications You must be signed in to change notification settings

manojkumarboppisetti/rcli-ent

Repository files navigation

rcli-ent

react cli to generate boiler plate codes for the components


Usage:

  1. Install it globally: npm install -g rcli-ent / yarn add -g rcli-ent.
  2. Run the below command in the terminal inside your React.JS project.
    Syntax: rct -c ComponentName
    Example: rct -c profile
    Sample output:
        Component profile/ProfileComponent.tsx created successfully
        Component profile/ProfileComponent.scss created successfully

Available options

You can use bellow options to customise.

Attribute Type Options Default Value Description Example
--skipStyles boolean true, false false by default component created with style sheet. pass false to override rct -c profile --skipStyles
--type string functional, class functional to generate functional or class component rct -c profile --type=class
--styles string scss, css scss to set style whether to use scss or css rct -c profile --styles=css
--camelCase boolean true, false false to create component with camel casing rct -c profile --camelCase

Note: Component path name could be nested folder path to create component in a nested folder.
Example: rct -c src/profile/change-password
Output:
Component src/profile/change-password/ChangePasswordComponent.tsx created successfully.
Component src/profile/change-password/ChangePasswordComponent.scss created successfully.

License

MIT Licensed. Copyright (c) Manoj varma 2023.

About

Cli tool to generate react components with boiler plate code

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages