https://github.com/openlabun/ApiTester
https://proyectosingenieria.uninorte.edu.co/apitester
https://github.com/openlabun/ApiTester
developer-tools rest-api
Last synced: 3 months ago
JSON representation
https://proyectosingenieria.uninorte.edu.co/apitester
- Host: GitHub
- URL: https://github.com/openlabun/ApiTester
- Owner: proyectosingenieriauninorte
- Created: 2023-10-02T22:47:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-07T06:43:02.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T21:26:36.101Z (over 1 year ago)
- Topics: developer-tools, rest-api
- Language: Vue
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
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
```
## Usage
Open your browser and navigate to `http://localhost:8080` to access the application.