1.1.3 ā€¢ Published 4 years ago

@charleylla/maruko-cli v1.1.3

Weekly downloads
8
License
ISC
Repository
github
Last release
4 years ago

maruko

An engineering building tool

Install

npm install -g @charleylla/maruko-cli
yarn global add @charleylla/maruko-cli

View help information

maruko -h
icb -h

Initialize project

icb new <project-type> <project-name>
maruko new <project-type> <project-name>

See the currently supported project types below

Currently supported project type

  • react
  • react-hooks
  • vue
  • flutter

Usage

šŸ‰  šŸ‰  Create Module  šŸ‰  šŸ‰

 - maruko generate module <your-module-name>
 - icb generate module <your-module-name>

Or use by the alias way:

 - maruko g m <your-module-name>
 - icb g m <your-module-name>

šŸŒ šŸŒ Create Component šŸŒ šŸŒ     
       
- maruko generate component <your-component-name>
- icb generate component <your-component-name>

Or use by the alias way:
   
- maruko g c <your-component-name>
- icb g c <your-component-name>

šŸŽ šŸŽ Create DTO šŸŽ šŸŽ

- maruko generate dto <your-dto-name>
- icb generate dto <your-dto-name>

Or use by the alias way:

- maruko g d <your-dto-name>
- icb g d <your-dto-name>

šŸ šŸ Create Enum šŸ šŸ  

- maruko generate enum <your-enum-name>
- icb generate enum <your-enum-name>

Or use by the alias way:

- maruko g e <your-enum-name>
- icb g e <your-enum-name>

šŸ‡ šŸ‡ Create Service šŸ‡ šŸ‡

- maruko generate service <your-service-name>
- icb generate service <your-service-name>

Or use by the alias way:

- maruko g s <your-service-name>
- icb g s <your-service-name>

Component Templates

Also, you can choose the template of your component, we support the following template styles:

  • Mobx
  • React Hooks with useReducer
  • React Hooks with useState

To create a component with a certain template, you can run maruko g c <your-component-name> -t <component-type>, we currently support the following component types:

  • mobx (or you can use the alias name 'm')
  • hooks-reducer (or you can use the alias name 'r')
  • hooks-state (or you can use the alias name 's')

For example:

maruko g c test -t mobx
maruko g c test -t hooks-reducer
maruko g c test -t hooks-state

or 

maruko g c test -t m
maruko g c test -t r
maruko g c test -t s

The 'hooks-state' is the default template type, to use template with hooks-state, you can directly run:

maruko g c <your-component-name>
1.1.3

4 years ago

1.1.1

4 years ago

1.0.23

5 years ago

1.0.22

5 years ago

1.0.21

5 years ago

1.0.20

5 years ago

1.0.19

5 years ago

1.0.18

5 years ago