An open API service indexing awesome lists of open source software.

https://github.com/openlabun/apitester

https://proyectosingenieria.uninorte.edu.co/apitester
https://github.com/openlabun/apitester

developer-tools rest-api

Last synced: 18 days ago
JSON representation

https://proyectosingenieria.uninorte.edu.co/apitester

Awesome Lists containing this project

README

          

# ApiTester

This project is a Vue.js application containerized with Docker. The application includes a component which allows users to make HTTP requests with various methods (GET, POST, PUT, DELETE) and view the responses.

After submitting a request, the component displays the response time and the JSON response in a formatted manner. This tool is useful for testing and debugging APIs.

## Steps for development

1. Clone the repository:
```sh
git clone https://github.com/proyectosuninorte/ApiTester.git
cd ApiTester
```

2. Build the Docker image:
```sh
docker build -t vue-app .
```

3. Run the Docker container:
```sh
docker run -p 8080:8080 vue-app
```

4. Open your web browser and navigate to `http://localhost:8080` to access the application.

## Development

To start developing, follow these steps:

```sh
docker build -f Dockerfile.deployment -t apitester-image .
docker run -d -it -p 5001:80 --restart unless-stopped --name apitester apitester-image
```
Access the application in your web browser at `http://localhost:5001`.