Ubah perintah CURL menjadi kode Permintaan Node online

Curl command

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

CURL ke Permintaan Node online

Alat ini membantu Anda menghasilkan kode Node Request berdasarkan perintah CURL. Salin dan tempel perintah CURL dan buat Permintaan Node.

Apa yang dapat Anda lakukan dengan pengonversi Permintaan CURL ke Node online?

  • CURL to Node Request adalah alat yang sangat unik untuk mengubah perintah CURL menjadi permintaan Node Request dari Node Request. Masukan yang diberikan oleh perintah CURL pengguna untuk menghasilkan kode Node Request.
  • Alat ini menghemat waktu Anda dan membantu menghasilkan kode Node Request dengan mudah.
  • Permintaan CURL ke Node 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 Permintaan Node, Permintaan Node, FTP, SFTP, TFTP, Gopher, dan lainnya.

Bagaimana cara mengonversi CURL ke kode Permintaan Node? 

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

Langkah2: Salin kode Permintaan Node

Konversikan CURL ke contoh Permintaan Node

KERITING
curl example.com
Permintaan Node
var request = require('request');

var options = {
    url: 'http://example.com'
};

function callback(error, response, body) {
    if (!error && response.statusCode == 200) {
        console.log(body);
    }
}

request(options, callback);