Swagger Faker is a tool which can help you generate fake data from your swagger.json file, then it will start a mock server automatically with the generated fake data.
- Install
npm i swagger-faker -g
- Init config file by command:
swagger-faker init
Then it will generate a config file swagger-faker.config.json
in current path, update that config file:
{
"sourcePaths": ["./source/openapi.json"],
"outputFolder": "mock-server",
"timeout": 180000,
"port": 8081
}
- sourcePaths:
required
, put your swagger/openapi file path here. Either local path(eg. "./source/openapi.json") or remote path(eg. https://petstore.swagger.io/v2/swagger.json) is supported. Valid format: json, yaml, yml. - outputFolder:
optional
- timeout:
optional
, - port:
optional
- Generate fake data
swagger-faker gen
- Start the mock server
swagger-faker run
git clone https://github.com/reeli/swagger-faker-examples.git
cd swagger-faker-examples
npm install
npm start
Then you'll see:
- A
mock-server
folder has been generated in your current path, and all mock data is setting inmock-server/data
folder, you can customize them if needed. - A mock server has been started in
http://localhost:8081
, you can open your browser and visit one of the mock API byhttp://localhost:8081/api/v2/store/order/1
(The mock data is setting in:mock-server/data/getOrderById.json
)