Enable the cors and the body-parser using app.use and body-parser and cors 
package from express.

Em quarta-feira, 22 de julho de 2020 às 03:00:53 UTC-3, 
lambert...@gmail.com escreveu:

> Hi, i'm new to node js and trying to write something to receive a json 
> post and then manipulate it.
>
> I have created a server as such to listen over https to receive incoming 
> requests,
>
> const https = require("https"), 
> fs = require("fs"), 
> helmet = require("helmet"); 
> express = require("express"); 
>
> const options = { 
> key: fs.readFileSync("//Users/Documents/nodejs/pd_int/keys/server.key"), 
> cert: fs.readFileSync("/Users/Documents/nodejs/pd_int/keys/server.crt") 
> }; 
>
> const app = express(); 
>
> app.use(helmet()); // Add Helmet as a middleware to force https 
>
> app.use((req, res) => { 
> res.writeHead(200); 
> res.end("hello world\n"); 
> }); 
>
> app.listen(8000); 
>
> https.createServer(options, app).listen(8080);
>
> Not too sure however how to receive the post from the third party.
>
> Any thoughts on how to ammend the above to receive the json post thus 
> allowing me to further manipulate it with another piece of code I have ..? 
> Appreciate any advice/assistance
>

-- 
Job board: http://jobs.nodejs.org/
New group rules: 
https://gist.github.com/othiym23/9886289#file-moderation-policy-md
Old group rules: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/nodejs/d8a3ae85-de3c-4482-a26f-f37a6d9059acn%40googlegroups.com.

Reply via email to