[SWAGGER] tự viết document cho RESTfull APIS (ok)

https://swagger.io/

Bước 1: lấy file swagger.jso

https://petstore.swagger.io/v2/swagger.json

Bước 2: Copy thưc mục dist

Bước 3: Sử dụng node js là server :)

{
  "name": "test",
  "version": "1.0.0",
  "description": "Test Api",
  "main": "index.js",
  "scripts": {
    "test": "node index.js"
  },
  "repository": {
    "type": "git",
    "url": "#"
  },
  "keywords": [
    "test"
  ],
  "author": "#",
  "license": "ISC",
  "dependencies": {
    "express": "^4.17.1"
  }
}

Last updated

Was this helpful?