Ubah perintah CURL menjadi kode HTTP Node online

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

CURL ke Node HTTP online

Alat ini membantu Anda menghasilkan kode HTTP Node berdasarkan perintah CURL. Salin dan tempel perintah CURL dan hasilkan Node HTTP.

Apa yang dapat Anda lakukan dengan konverter HTTP CURL ke Node online?

  • CURL ke Node HTTP adalah alat yang sangat unik untuk mengonversi perintah CURL ke permintaan Node HTTP dari Node HTTP. Masukan yang diberikan oleh perintah CURL pengguna untuk menghasilkan kode HTTP Node.
  • Alat ini menghemat waktu Anda dan membantu menghasilkan kode HTTP Node dengan mudah.
  • CURL ke Node HTTP berfungsi dengan baik di Windows, MAC, Linux, Chrome, Firefox, Edge, dan Safari.

apa itu CURL?

CURL adalah alat baris perintah sumber terbuka yang mengunduh file dari web. Ini mendukung berbagai protokol, termasuk Node HTTP, Node HTTPS, FTP, SFTP, TFTP, Gopher dan lainnya.

Bagaimana cara mengonversi CURL ke kode HTTP Node? 

Langkah1: Tempel dan konversikan permintaan CURL Anda ke kode HTTP Node

Langkah2: Salin kode HTTP Node

Konversikan CURL ke contoh Node HTTP

KERITING
curl example.com
Node HTTP
const http = require("http");

const options = {
  "method": "GET",
  "hostname": "example.com",
  "port": null,
  "path": "/",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();