A simple react-cli and other utilities
npm install josephineThis package includes the global command for generate schematic file of component and component functional.
npm install -g josephine
``
react generate --component my-new-component
react g -c my-new-component # using the alias
react g -c new-cmp
react g -c ./new-cmp
react g -c ./component/new-cmp
Example Generate Component Functional
`
react generate --function my-new-component
react g -f my-new-component # using the aliascomponents support realtive path generation
if in the directory src/app/components and you run
react g -f new-cmp
your component will be generated in src/app/components/new-cmp.js
but if you were to run
react g -f ./new-cmp
your component will be generated in src/app/components/new-cmp.js
if in the directory src/app
react g -f ./component/new-cmp
and your component will be generated in src/app/components/new-cmp.js
`Help
josephine help
josephine -h
`
Commands:
help Display help
version Display versionOptions:
-c, --component Schematic type component
-f, --function Schematic type component function
-h, --help Output usage information
-n, --name name of schematic
-v, --version Output the version number
``