Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyako/curl
https://github.com/miyako/curl
4d-class 4d-component curl
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/miyako/curl
- Owner: miyako
- License: mit
- Created: 2024-11-18T21:06:53.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-19T00:10:33.000Z (about 2 months ago)
- Last Synced: 2024-11-19T00:42:39.897Z (about 2 months ago)
- Topics: 4d-class, 4d-component, curl
- Language: 4D
- Homepage: https://miyako.github.io/curl/
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![version](https://img.shields.io/badge/version-20%2B-E23089)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm%20|%20win-64&color=blue)
[![license](https://img.shields.io/github/license/miyako/curl)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/curl/total)# curl
## dependencies.json
```json
{
"dependencies": {
"curl": {
"github": "miyako/curl",
"version": "*"
}
}
}
```based on [stunnel/static-curl](https://github.com/stunnel/static-curl)
## Usage - with UI
```4d
#DECLARE($params : Object)If (Count parameters=0)
CALL WORKER(1; Current method name; {})
Else
$form:=cs._curlForm.new()
End if
```## Usage - without UI
```4d
#DECLARE($params : Object)If ($params=Null)
/*
async calls must be performed in a worker or form
*/
CALL WORKER(1; Current method name; {})
Else
var $curl : cs.curl
$curl:=cs.curl.new(cs._curl_Controller)
$URL:="https://resources-download.4d.com/release/20.x/20.5/latest/mac/tool4d_arm64.tar.xz"
$out:=Folder(fk desktop folder).file("tool4d_arm64.tar.xz")
$curl.perform([$URL; "-o"; $out; "-L"; "-#"]) //L:follow redirection
End if
```