Skip to content

Files

Latest commit

 

History

History
51 lines (36 loc) · 1.67 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.67 KB

WireMock UI

wiremock ui license wiremock ui issues wiremock ui build status

An unofficial UI for WireMock.

Features | Project structure | How to start the UI

UI screenshot

Features

  • supports multi wiremock servers
  • create/edit/delete wiremock stubs
  • json or visual mode
  • theming
  • support multiple panes

UI screenshot

Project structure

The project was bootstrapped using create-react-app using custom scripts react-scripts-ts for typescript support.

How to start the UI

  1. Use a shell and enter the wiremock-ui directory.

  2. Type: yarn install

  3. Type: yarn start

  4. The first thing you do is: Add a server (use the adress of a running WireMock Server)

Example default server configurations

File can be placed at src/config/defaultServers.json

{
	"servers" : [
		{
			"name" : "test server",
			"url" : "http://test-server-wired.app.com",
			"port" : null
		}
  ]
}