From d8dae540c525c510f25a8178d8d1efa2e578c6e1 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 16 May 2022 21:54:27 +0200 Subject: [PATCH] Add README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..cec5638 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Simple Callback Server +A simple server that prints headers and body of a request to the console. + +## Usage +```console +$ npm install +``` + +```console +$ npm run start +``` + +Then every incoming HTTP request will be logged with the following information: +- HTTP Method +- Called path +- Headers +- (if exists) Query parameter +- (if exists) Body \ No newline at end of file