Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

204
Views
Sending data from client to server (node.js)

can somebody help my with communication between client and server(node.js) index.js

let msg = [{ user: "Sam" }, { user: "John" }];
    const options = {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
        },
        body: JSON.stringify(msg),
        mode: "no-cors",
    };
    fetch(`http://localhost:3000/data`, options);

server.js (node.js)

const express = require("express");
const app = express();
app.use(express.json()); 
app.post("/data", (req, res) => {
    console.log(req.body);
});
app.listen(3000, () => console.log("Server listening a port 3000"));

When I send request, console.log is empty, can somebody tell my why?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!