pcurl
pcurl copied to clipboard
pcurl是解析curl命令的库,弥补go生态链的一块空白[从零实现]
Results
3
pcurl issues
Sort by
recently updated
recently updated
newest added
新的功能点. 比如 ```bash # cat t.json # { # "userName" :"haha", # "password" :"haha" # } curl --verbose -X POST -H "Content-Type:application/json" -d @./t.json http://xxx/v1/login ``` 直接生成如下代码 ```go // request的结构体代码...
### 主要目的使用golang再造一个curl库,为高性能解析curl表达式提供支持(相比call bash方式) * 只专注于http相关功能点 * 使用20%的时间实现80%的功能 * 剩余20%功能慢慢实现