We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 781ade7Copy full SHA for 781ade7
.gitignore
@@ -0,0 +1 @@
1
+node_modules
index.js
@@ -0,0 +1,9 @@
+const http = require('http')
2
+const request = require('request')
3
+
4
+const server = http.createServer(function (request, response) {
5
+ response.writeHead(204)
6
+ response.end()
7
+})
8
9
+server.listen(8080)
package.json
@@ -0,0 +1,15 @@
+{
+ "name": "incident",
+ "version": "1.0.0",
+ "description": "",
+ "main": "index.js",
+ "dependencies": {
+ "request": "2.69.0"
+ },
+ "devDependencies": {},
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
13
+ "author": "",
14
+ "license": "ISC"
15
+}
0 commit comments