0.1.2 • Published 4 years ago

@skr571999/crc v0.1.2

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

Create React Component

A package for creating React component for TS and JS.

Installation

npm i -g @skr571999/crc

or running using npx (without Installing)

npx @skr571999/crc -n ComponentName

Usage/Options

Usage: crc -n <name>

Options:
      --help       Show help                                       [boolean]
      --version    Show version number                             [boolean]
  -n, --compName   Component name                        [string] [required]
  -l, --language   Language [js, ts(default)]                       [string]
  -c, --component  Make component [No(default)]                    [boolean]

Examples

  • For JavaScript
cd src
crc -n TextBox -l js

# will create following component structure
src
├── components
    ├── TextBox
        ├── textbox.view.jsx
        └── index.js
  • For TypeScript
cd src
crc -n TextBox

# will create following component structure
src
├── components
    ├── TextBox
        ├── textbox.view.tsx
        └── index.ts
  • For TypeScript with a .container.tsx file
cd src
crc -n TextBox -c

# will create following component structure
src
├── components
    ├── TextBox
        ├── textbox.container.tsx
        ├── textbox.view.tsx
        └── index.ts

Similar Project

TODO

  • Add feature to create (SCSS, model) files
  • Add feature to create page Ex. pages/Login
0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

5 years ago