Monu Tools

cURL fetch konvertáló

Alakíts egy curl parancsot egyenértékű JavaScript fetch kóddá, teljesen a böngésződben.

Így használd a következőt: cURL fetch-re

  1. 01

    Illessz be egy curl parancsot.

  2. 02

    Az egyenértékű fetch kód azonnal generálódik.

  3. 03

    Másold a JavaScriptet a projektedbe.

Turn curl into fetch

A converter that turns a curl command into equivalent JavaScript fetch code, parsing the method, URL, headers and body so you get a ready-to-use request instead of translating it by hand.

It is a common need: API docs and tools like browser devtools give you a curl command, but your app is written in JavaScript. This bridges the two so you can paste curl and get fetch.

It runs locally in your browser, so your command, including any tokens or credentials in the headers, never leaves your device.

Flags it understands

It understands the common flags: -X for the method, -H for headers, -d and its variants for the body, -u for basic auth, plus -A for the user agent and -b for cookies. A data flag implies POST, matching how curl behaves.

Multi-line commands

Multi-line commands work as-is. Backslash line continuations are joined automatically, so you can paste a command exactly as it appears in documentation without cleaning it up first.

Ready-to-run output

The output is a fetch call with the method, headers and body filled in, which you can drop into your code and await like any other fetch.

Gyakran ismételt kérdések

Mely curl jelzőket támogatja?

A gyakoriakat: -X a metódushoz, -H a fejlécekhez, -d és változatai a törzshöz, -u az alap hitelesítéshez, plusz -A és -b. Egy adatjelző POST-ot jelez.

Elküldődik a parancsom egy szervernek?

Nem. A konvertálás teljesen a böngésződben fut, így a parancsod és a benne lévő tokenek soha nem hagyják el az eszközöd.

Kezeli a többsoros parancsokat?

Igen. A fordított perjeles sorfolytatások automatikusan összekapcsolódnak, így beilleszthetsz egy parancsot pontosan úgy, ahogy a dokumentációban megjelenik.

Források

Eszköz beágyazása

Add hozzá ezt az eszközt a saját weboldaladhoz. Másold ki az alábbi kódrészletet, amely automatikusan naprakész marad.

<iframe src="https://monu.tools/embed/hu/curl-to-fetch" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

Kapcsolódó eszközök