4.1.1 • Published 1 month ago

keq-cli v4.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

version downloads dependencies license Codecov

简体中文

Transform Swagger 3.0 to the function that send request by keq.

Usage

Prepare

You need prepare a Swagger 3.0 file first.

Compile

npx keq-cli compile  -o ./output -m userService ./swagger.json

Options:

optiondescription
-o --outdirThe output directory
-m --module-nameThe module name
--file-naming-styleFile naming style.(default 'snakeCase', see more in change-case)
--requestThe request package used in compiled result.(default 'keq')

Use In Coding

import { request, mount } from 'keq'
import { setHeader } from 'keq-header'
import proxy from 'keq-proxy'
import updateUser from './outdir/userService/update_user'


request
  // set your middleware for module
  .use(mount.module('userService'), setHeader('x-custom-header', 'custom_value'))
  // set modlue request url
  .use(proxy.module('userService', 'http://example.com/api'))



async function action() {
  await updateUser({ id: 1, name: 'Marry' })
}

Configuration file

Use configuration files is easy to regeneration. By default, keq-cli will search for .keqrc.yml, .keqrc.json, keqrc.js.config. You can use -c --config <config_file_path> to set the config file you wanted.

npx keq-cli build
npx keq-cli build -c ./.keqrc.yml

Compared with keq-cli compile, the configuration file can set multiple modules with multiple url for different environments.

The yml configuration file Example:

outdir: ./output
fileNamingStyle: snakeCase
modules:
  userService: ./swagger.json
  coreService: http://example.com/swagger.json

The json configuration file Example:

{
  "outdir": "./output",
  "fileNamingStyle": "snakeCase",
  "modules": {
    "userService": "./swagger.json",
    "coreService": "http://example.com/swagger.json"
  }
}
4.1.1

1 month ago

4.0.2

1 month ago

4.1.0

1 month ago

4.0.1

3 months ago

4.0.0

3 months ago

3.1.5

1 year ago

3.1.4

1 year ago

3.1.3

1 year ago

3.1.2

1 year ago

3.1.1

1 year ago

3.1.0

1 year ago

3.0.14

2 years ago

3.0.15

2 years ago

3.0.9

2 years ago

3.0.12

2 years ago

3.0.4

2 years ago

3.0.13

2 years ago

3.0.3

2 years ago

3.0.10

2 years ago

3.0.2

2 years ago

3.0.11

2 years ago

3.0.1

2 years ago

3.0.8

2 years ago

3.0.7

2 years ago

3.0.6

2 years ago

3.0.5

2 years ago

3.0.0

2 years ago

2.5.0

2 years ago

2.4.0

2 years ago

2.3.0

2 years ago

2.1.2

2 years ago

2.2.0

2 years ago

2.3.2

2 years ago

2.3.1

2 years ago

2.3.3

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.2.2

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.1.3

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.3

3 years ago

1.0.0

3 years ago