Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

foss42/curl_converter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

curl_converter

A Dart package that provides a Curl class for parsing and formatting cURL commands.

Usage

  1. Add the package to your pubspec.yaml file

  2. Use the package:

import 'package:curl_converter/curl_converter.dart';

void main() {
  // Parse a cURL command
  final curlString = 'curl -X GET https://www.example.com/';
  final curl = Curl.parse(curlString);
  
  // Access parsed data
  print(curl.method); // GET
  print(curl.uri); // https://www.example.com/

  // Format Curl object to a cURL command
  final formattedCurlString = curl.toCurlString();
  print(formattedCurlString); // curl -X GET https://www.example.com/
}

See test folder for more example usages.

Features

  • Parse a cURL command into a Curl class instance.
  • Format a Curl object back into a cURL command.
  • Supports various options such as request method, headers, data, cookies, user-agent, and more.

Commands

Publish new version

$ dart pub publish --dry-run

Contributing

Contributions are welcome! Please create an issue or make a fork and propose a PR to contribute to this project.

License

This project is a fork of utopicnarwhal/curl_converter which was licensed under the Apache License 2.0.

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%