Ahuigo
Ahuigo
In case of developer don't know how to name cli file, `README.md` should describe the cli package's file naming.
I'm confused about `APP_DIR`. If I touch a file named `/library/linux/bash.md` (with no space),I‘ll get errors when I access `http://host.com/linux/bash.md`: ``` `could not find file bash.md` . ``` That is...
I think using keyboard shortcuts to switch to frequently used projects is more convenient than using a dropdown list projects with `command+alt+p` Is it possible to bind shortcut with specified...
1. New feature: generate curl cmd for request. - https://github.com/ahuigo/resty/blob/examples/examples/debug_curl_test.go 2. Examples: they are also unit tests. - https://github.com/ahuigo/resty/tree/examples/examples Feel free to close this PR if you think these codes...
## New feature: generate curl command Example: https://github.com/ahuigo/resty/blob/examples-v2/examples/debug_curl_test.go ``` var curlCmdExecuted string client := resty.New() _, err := client.R(). SetResultCurlCmd(&curlCmdExecuted). Get("https://httpbin.org/get") // Explore curl command fmt.Println("Curl Command:", curlCmdExecuted) ``` ##...
feat: support root src path(`"@/":"/_ultra/compiler/src/"`) 1. Support root src path like `import Button from '@/components/button.tsx'` 2. Add an example and test case about root src path in **examples/with-react/router** Refer: https://nextjs.org/docs/advanced-features/module-path-aliases
I found it does not support local image: ``
### Proposal Support generic package. Is it possible? ### Background It would be nice to use this famous generic package "github.com/samber/lo" ### Workarounds I find that `yaegi` doesn't support generic...
重构并新增features: 1. 支持session(cookie会话保持) 2. debug模式支持输出curl 3. 单元测试(基于examples) 4. 完整的examples 4. request 生成器 5. 支持plain/url-encoded/form-data/json/multiple-file 请求体 6. 支持http global header 7. 支持put/patch/delete 等方法
Preact's hydrate will clear uncontrolled property(e.g., `defaultValue="12"`), this is wrong > We could see that `defaultValue="12"` is cleared by client's hydrate. I'm not sure if this is a fresh bug....