@noopejs/rgen
v1.1.6
Published
The React Gen CLI to build your next application faster.
Maintainers
Readme
The CLI for React Gen framowrok rgen
Install the CLI globally in your machine
npm install -g @noopejs/rgenSetup your new React Gen app
rgen new app myAppNavigate to your new project and run development server
cd myApp && npm run devGenerate new module
rgen new module aboutThis command will generate the following files:
src/
-- about/
---- about.module.ts
---- about.service.ts
---- about.component.tsxIt's also possible to generate a single unit [moduleClass, service, moduleComponent] by specifying option as follows:
rgen new moduleClass aboutrgen new service aboutrgen new moduleComponent about