Skip to content

Commit e50571c

Browse files
authored
Merge pull request #19 from eexit/v2
v2.0.0
2 parents 9d7fad5 + cf85ceb commit e50571c

File tree

5 files changed

+72
-69
lines changed

5 files changed

+72
-69
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM node:lts-alpine
2-
RUN apk add --no-cache make gcc g++ python
2+
RUN apk add --no-cache yarn
33
WORKDIR /app
44
COPY . .
5-
RUN npm install --loglevel=error --prod
6-
EXPOSE 80
7-
CMD [ "npm", "start" ]
5+
RUN yarn --frozen-lockfile --loglevel=error --prod
6+
EXPOSE 8080
7+
CMD [ "yarn", "start" ]

README.md

+30-26
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
![logo](logo.png)
22

3-
# Mirror HTTP Server [![Build Status](https://travis-ci.org/eexit/mirror-http-server.svg)](https://travis-ci.org/eexit/mirror-http-server) [![DockerHub](https://img.shields.io/badge/docker-hub-brightgreen.svg?style=flat)](https://hub.docker.com/r/eexit/mirror-http-server/) [![Greenkeeper badge](https://badges.greenkeeper.io/eexit/mirror-http-server.svg)](https://greenkeeper.io/)
3+
# Mirror HTTP Server [![Build Status](https://travis-ci.org/eexit/mirror-http-server.svg)](https://travis-ci.org/eexit/mirror-http-server) [![DockerHub](https://img.shields.io/badge/docker-hub-brightgreen.svg?style=flat)](https://hub.docker.com/r/eexit/mirror-http-server/)
44

5-
*A dummy HTTP server that responds whatever you told him to.*
5+
*A dummy HTTP server that responds whatever you told it to.*
66

7-
Build to play with HTTP or test your API. Make a HTTP call to the dummy server with the specified headers you want the server responds with.
7+
Built to play with HTTP or test your API. Make a HTTP call to the dummy server with the specified headers you want the server responds with.
88

99
## Usage
1010

11-
Pull the [Docker](https://www.docker.com) container:
11+
Pull the [Docker container](https://hub.docker.com/repository/docker/eexit/mirror-http-server):
1212

1313
docker pull eexit/mirror-http-server
1414

1515
Start the container:
1616

17-
$ docker run -itp 80:80 eexit/mirror-http-server
18-
2015-11-05T20:59:57.353Z] INFO: mirror-http-server/17 on ccc867df5980: Listening on http://0.0.0.0:80
17+
$ docker run -itp 8080:8080 eexit/mirror-http-server
18+
2015-11-05T20:59:57.353Z] INFO: mirror-http-server/17 on ccc867df5980: Listening on http://0.0.0.0:8080
1919

2020
For this README examples, I use the great [HTTPie](https://github.com/jkbrzt/httpie) tool.
2121

22-
Send request againt it:
22+
Send request against it:
2323

24-
http :80
24+
http :8080
2525

2626
```http
2727
HTTP/1.1 200 OK
@@ -40,25 +40,10 @@ You can change the server response code and body by setting specific `X-Mirror-*
4040
### `X-Mirror-Code`
4141

4242
Change the server response [status code](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes).
43-
Here, simulate a server error:
4443

45-
```bash
46-
time http :80 X-Mirror-Code:503 X-Mirror-Delay:2000
47-
HTTP/1.1 503 Service Unavailable
48-
Connection: keep-alive
49-
Content-Length: 0
50-
Date: Fri, 20 May 2022 09:52:04 GMT
51-
Keep-Alive: timeout=5
52-
X-Powered-By: Express
44+
Examples that simulates a `301` redirection and a `Content-Type` change:
5345

54-
55-
56-
http :80 X-Mirror-Code:503 X-Mirror-Delay:2000 0.12s user 0.03s system 7% cpu 2.163 total
57-
```
58-
59-
Here, simulates a `301` redirection and a `Content-Type` change:
60-
61-
http :80 \
46+
http :8080 \
6247
X-Mirror-Code:301 \
6348
X-Mirror-Location:http://www.eexit.net \
6449
X-Mirror-Content-Type:"text/plain; charset=ISO-8859-1"
@@ -98,6 +83,25 @@ If you check the container logs:
9883
}
9984
```
10085

86+
### `X-Mirror-Delay`
87+
88+
If you need to test timeouts or errors handling like `503` HTTP responses, you can pass the
89+
`X-Mirror-Delay` header with a number in milliseconds before the server responds.
90+
91+
```bash
92+
time http :8080 X-Mirror-Code:503 X-Mirror-Delay:2000
93+
HTTP/1.1 503 Service Unavailable
94+
Connection: keep-alive
95+
Content-Length: 0
96+
Date: Fri, 20 May 2022 09:52:04 GMT
97+
Keep-Alive: timeout=5
98+
X-Powered-By: Express
99+
100+
101+
102+
http :8080 X-Mirror-Code:503 X-Mirror-Delay:2000 0.12s user 0.03s system 7% cpu 2.163 total
103+
```
104+
101105
### `X-Mirror-Request`
102106

103107
If you can't access to the container log or want to exploit what's logged under the hood, set the `X-Mirror-Request` to receive the logged entry (as JSON):
@@ -171,7 +175,7 @@ X-Powered-By: Express
171175

172176
Note: if you don't specify the `true` value for the header, it'll ignored.
173177

174-
### Works for all headers
178+
### Works with any headers
175179

176180
Aside to the previous three special headers, you can set your wanted response header by prepending your header name by `X-Mirror-`.
177181

package.json

+33-33
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
{
2-
"name": "mirror-http-server",
3-
"version": "1.1.3",
4-
"description": "A dummy HTTP server that responds whatever you told him to",
5-
"scripts": {
6-
"start": "node server.js | npm run bunyan",
7-
"start:dev": "nodemon server.js | npm run bunyan",
8-
"test": "echo \"No test specified yet\"",
9-
"bunyan": "$(npm bin)/bunyan"
10-
},
11-
"keywords": [
12-
"node",
13-
"nodejs",
14-
"server",
15-
"http",
16-
"mirror",
17-
"dumb",
18-
"dump",
19-
"test",
20-
"development"
21-
],
22-
"author": "Joris Berthelot <[email protected]>",
23-
"license": "MIT",
24-
"dependencies": {
25-
"body-parser": "^1.19.0",
26-
"bunyan": "^1.8.13",
27-
"express": "^4.17.1",
28-
"lodash": ">=4.17.20"
29-
},
30-
"devDependencies": {
31-
"nodemon": "^2.0.0"
32-
},
33-
"main": "index.js",
34-
"repository": "git@eexit:eexit/mirror-http-server.git"
2+
"name": "mirror-http-server",
3+
"version": "2.0.0",
4+
"description": "A dummy HTTP server that responds whatever you told it to",
5+
"scripts": {
6+
"start": "node server.js | npm run bunyan",
7+
"start:dev": "nodemon server.js | npm run bunyan",
8+
"test": "echo \"No test specified yet\"",
9+
"bunyan": "$(npm bin)/bunyan"
10+
},
11+
"keywords": [
12+
"node",
13+
"nodejs",
14+
"server",
15+
"http",
16+
"mirror",
17+
"dumb",
18+
"dump",
19+
"test",
20+
"development"
21+
],
22+
"author": "Joris Berthelot <[email protected]>",
23+
"license": "MIT",
24+
"dependencies": {
25+
"body-parser": "^1.20.0",
26+
"bunyan": "^1.8.15",
27+
"express": "^4.18",
28+
"lodash": ">=4.17.21"
29+
},
30+
"devDependencies": {
31+
"nodemon": "^2.0.0"
32+
},
33+
"main": "index.js",
34+
"repository": "git@eexit:eexit/mirror-http-server.git"
3535
}

server.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
const host = '0.0.0.0',
4-
port = 80;
4+
port = 8080;
55

66
const _ = require('lodash'),
77
bunyan = require('bunyan'),
@@ -62,7 +62,6 @@ app.all('*', function (req, res, next) {
6262

6363
logger.info(request);
6464

65-
6665
// Prepares the response
6766
res.status(mirrorCode).set(responseHeaders);
6867

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ binary-extensions@^2.0.0:
6969
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
7070
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
7171

72-
[email protected], body-parser@^1.19.0:
72+
[email protected], body-parser@^1.20.0:
7373
version "1.20.0"
7474
resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.0.tgz#3de69bd89011c11573d7bfee6a64f11b6bd27cc5"
7575
integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==
@@ -116,7 +116,7 @@ braces@~3.0.2:
116116
dependencies:
117117
fill-range "^7.0.1"
118118

119-
bunyan@^1.8.13:
119+
bunyan@^1.8.15:
120120
version "1.8.15"
121121
resolved "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.15.tgz#8ce34ca908a17d0776576ca1b2f6cbd916e93b46"
122122
integrity sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==
@@ -350,7 +350,7 @@ etag@~1.8.1:
350350
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
351351
integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
352352

353-
express@^4.17.1:
353+
express@^4.18:
354354
version "4.18.1"
355355
resolved "https://registry.yarnpkg.com/express/-/express-4.18.1.tgz#7797de8b9c72c857b9cd0e14a5eea80666267caf"
356356
integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==
@@ -678,7 +678,7 @@ latest-version@^5.1.0:
678678
dependencies:
679679
package-json "^6.3.0"
680680

681-
lodash@>=4.17.20:
681+
lodash@>=4.17.21:
682682
version "4.17.21"
683683
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
684684
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==

0 commit comments

Comments
 (0)