An open API service indexing awesome lists of open source software.

https://github.com/knfs-library/bamimi-cli

Cli for BAMIMI Framework
https://github.com/knfs-library/bamimi-cli

cli nodejs nodejs-cli nodejs-framework nodejs-frameworks nodejs-server

Last synced: 2 days ago
JSON representation

Cli for BAMIMI Framework

Awesome Lists containing this project

README

        





Github Actions

About Bamimi CLI

Bamimi CLI is a command-line tool designed to streamline the creation of common elements for your Node.js projects, including controllers, middleware, responses, requests, emails, and jobs. This tool supports rapid development and automates the creation of essential files for your project.

## Install

Install this CLI tool globally using npm:

```bash
npm install -g @knfs-tech/bamimi-cli
```

Or with yarn:

```bash
yarn global add @knfs-tech/bamimi-cli
```

## Usage

You can use this CLI tool with the following commands:

### Create Project

```bash
bamimi-cli app:generate [options]
```

- `projectName`: The name of the project you want to create.
- `-d, --description `: The description of the project.
- `-v, --version `: The version of the project.
- `-dk, --docker `: Use Docker (y/n).
- `-esl, --eslint `: Use Eslint (y/n).
- `-t, --test `: Use Test (y/n).
- `-dbt, --databaseType `: 'Database connection (postgres, mysql, mariadb, sqlite, mssql, snowflake, oracle, mongodb).
- `-dbh, --databaseHost `: Database host.
- `-dbp, --databasePort `: Database port.
- `-dbn, --databaseName `: 'Database name.
- `-dbu, --databaseUser `: Database username.
- `-dbps, --databasePassword `: Database password.
- `-pkm, --packageManager `: Package manager (npm, yarn, pnpm, none).

### Generate Controller

```bash
bamimi-cli controller:generate [options]
```

- `controllerName`: The name of the controller you want to create.
- `-p, --path `: Path for the controller (if you don’t want to use the default path).
- `-f, --func `: List of functions to create (comma-separated).
- `-t, --type `: Type of controller (api or web).
****
### Generate Middleware

```bash
bamimi-cli middleware:generate [options]
```

- `middlewareName`: The name of the middleware you want to create.
- `-p, --path `: Path for the middleware (if you don’t want to use the default path).

### Generate Response

```bash
bamimi-cli response:generate [options]
```

- `responseName`: The name of the response you want to create.
- `-p, --path `: Path for the response (if you don’t want to use the default path).

### Generate Request

```bash
bamimi-cli request:generate [options]
```

- `requestName`: The name of the request you want to create.
- `-p, --path `: Path for the request (if you don’t want to use the default path).

### Generate Email

```bash
bamimi-cli email:generate [options]
```

- `emailName`: The name of the email you want to create.
- `-tn, --templateName `: Template name if you want to use email with HTML.
- `-job, --jobName `: Job name if you want to use email with a queue job.

### Generate Job

```bash
bamimi-cli job:generate [options]
```

- `jobName`: The name of the job you want to create.
- `-isc, --isSchedule `: Job is schedule (y/n).

### Generate Interface

```bash
bamimi-cli itf:generate
```
- `interfaceName`: The name of the interface you want to create.

### Generate Docker

```bash
bamimi-cli docker:generate
```
### Generate Eslint

```bash
bamimi-cli lint:generate
```

### Generate TestConfig

```bash
bamimi-cli testConfig:generate
```

### Generate SQL config, structure, install dependency

```bash
bamimi-cli sql:generate
```

### Get version

```bash
bamimi-cli version:list-remote
```

### Build Project

```bash
bamimi-cli build
```

## License

Bamimi CLI is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).

## Author
* [Kent Phung](https://github.com/khapu2906)

## Owner
* [KNFs JSC](https://github.com/knfs-jsc)