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

https://github.com/catvec/header-debugger

A quick NodeJS program I made to spit out the headers on an HTTP request, used for debugging
https://github.com/catvec/header-debugger

Last synced: 7 months ago
JSON representation

A quick NodeJS program I made to spit out the headers on an HTTP request, used for debugging

Awesome Lists containing this project

README

          

# Header Debugger
A quick NodeJS program I made to spit out the headers on an HTTP request, used
for debugging.

# Table Of Contents
- [Overview](#overview)

# Overview
Starts a server on port 3000 with responds to every request with the headers
present in that request.

Useful for debugging HTTP requests you are sending to remote servers to ensure
you are formatting them correctly.

# Usage
First install packages:

```
npm install
```

Then run:

```
npm start
```