Tiontaigh orduithe CURL go cód HTTP Node ar líne

Curl command

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

CURL go Nód HTTP ar líne

Cuidíonn an uirlis seo leat cód Nód HTTP a ghiniúint bunaithe ar ordú CURL. Cóipeáil agus greamaigh ordú CURL agus giniúint Nód HTTP.

Cad is féidir leat a dhéanamh leis an tiontaire CURL go Nóde HTTP ar líne?

  • Is uirlis an-uathúil é CURL to Nód HTTP chun ordú CURL a thiontú go hiarratas Nód HTTP ar Nóde HTTP. Soláthraíonn an t-ionchur a sholáthraíonn ordú CURL an úsáideora cód Nód HTTP a ghiniúint.
  • Sábhálann an uirlis seo do chuid ama agus cabhraíonn sé le cód Nód HTTP a ghiniúint gan stró.
  • Oibríonn CURL go Nód HTTP go maith ar Windows, MAC, Linux, Chrome, Firefox, Edge agus Safari.

cad é CURL?

Is uirlis líne ordaithe foinse oscailte é CURL a íoslódálann comhaid ón ngréasán. Tacaíonn sé le héagsúlacht prótacail, lena n-áirítear Nód HTTP, Nód HTTPS, FTP, SFTP, TFTP, Gopher agus daoine eile.

Conas CURL a thiontú go cód HTTP Node? 

Céim 1: Greamaigh agus tiontaigh d’iarratais CURL go cód Node HTTP

Step2: Cóipeáil Cód HTTP Nód

Tiontaigh CURL go Nód HTTP mar shampla

CURL
curl example.com
Nód 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();