yonmey / swagger-es6

Swagger to JS & Vue & Axios Codegen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

swagger-es6

Swagger.json to ES6 Client Generator

Installation

npm install swagger-es6 --dev

Generate

Using NodeJS file

const swaggerGen = require('swagger-es6')
const jsonData = require('../api-docs.json')
const fs = require('fs')
const path = require('path')

let opt = {
  swagger: jsonData,
  moduleName: 'api',
  className: 'api'
}
const codeResult = swaggerGen(opt)
fs.writeFileSync(path.join(__dirname, '../dist/api.js'), codeResult)

# Generated client usage

In JS main file set API domain
```javascript
import { setDomain } from './lib/api-client.js'
const server = "http://localhost:3000/api";
setDomain(server)

Import API function into JS component, for example to log in

import { user_login as userLogin } from '../lib/api-client.js'

userLogin({
  credentials: {
    username: 'admin',
    password: 'admin'
  }
}).then(function (response) {
  console.log(response.data) // {id: "<token>", ttl: 1209600, created: "2017-01-01T00:00:00.000Z", userId: 1}
})

All requests use axios module with promise, for more information about that follow axios documentation

Links

License

MIT

About

Swagger to JS & Vue & Axios Codegen

License:MIT License


Languages

Language:JavaScript 65.8%Language:HTML 34.2%