Commit 62634373 authored by Patrick's avatar Patrick
Browse files

test update

parent 70ef680d
...@@ -3,6 +3,11 @@ const fs = require('fs'); ...@@ -3,6 +3,11 @@ const fs = require('fs');
const http = require('http'); const http = require('http');
const https = require('https'); const https = require('https');
const express = require('express'); const express = require('express');
const bodyParser = require('body-parser')
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json())
const request = require('ajax-request');
const app = express(); const app = express();
...@@ -31,5 +36,3 @@ httpsServer.listen(8083, () => { ...@@ -31,5 +36,3 @@ httpsServer.listen(8083, () => {
console.log('HTTPS Server running on port 443'); console.log('HTTPS Server running on port 443');
}); });
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment