Giter VIP home page Giter VIP logo

all-the-requests's Introduction

All The Requests

This is a simple HTTP server written in Go that logs all incoming requests with details including timestamp, path, headers, and payload. It's useful for debugging callbacks and webhooks.

Example

Features

  • Logs the request path, headers, and body.
  • Adds a timestamp to each request log.
  • Configurable port via command-line arguments.

Getting Started

Prerequisites

  • Go 1.16 or later

Installation

Clone the repository:

git clone https://github.com/klausbreyer/all-the-requests.git
cd all-the-requests

Usage

Build and run the server:

go build -o all-the-requests
./all-the-requests -port=8080

By default, the server listens on port 8080. You can specify a different port using the -port flag.

Example

Start the server:

./all-the-requests -port=9090

Output:

Starting server on :9090
Server is ready to handle requests and display all details.

Make a request to the server:

curl -X POST http://localhost:9090 -d "test payload" -H "Content-Type: text/plain"

The server logs:

--------------------------------------------------
Timestamp: 2024-06-11T13:52:33+02:00
Method: POST
Path: /
Headers:
  User-Agent: curl/8.6.0
  Accept: */*
  Content-Type: text/plain
  Content-Length: 12
--------------------------------------------------
Payload: test payload
--------------------------------------------------

Downloads

You can download the (unsigned) binaries here.

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Go for the programming language.

all-the-requests's People

Contributors

klausbreyer avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.