const http = require('http'); const data = JSON.stringify({ name: 'Kosmetyczka_Web' }); const options = { hostname: '127.0.0.1', port: 7878, path: '/api/projects', method: 'POST', headers: { 'Content-Type': 'application/json', 'Content-Length': data.length } }; const req = http.request(options, (res) => { let body = ''; res.on('data', (d) => body += d); res.on('end', () => console.log('Project response:', body)); }); req.write(data); req.end();