Unified fetching
Compile the same code to any backend with extra features!
Also, Unifetch provides you helpful features for development purposes
If some request isn't worked as expected for some reason, you can enable this
feature with -d:unifetchShowCurlRepr
and analyze the curl request externally!
You can enable a persistent request caching with -d:unifetchCache=/tmp/unifetchCache
.
All requests would be saved into specified directory and skip when the parameters
is exactly the same and cache exists.
In JS-web backend the cache is stored in LocalStorage, every request saves a new entry
import pkg/unifetch
echo fetch "https://example.com"
or
import pkg/unifetch
let
uni = newUniClient()
resp = await uni.get("https://example.com")
echo resp.body
- Javascript Backend
- NodeJS
- Userscript
- Add tests
- Production ready caching (without response parameters or encrypting it) with optional expiration
- Optional runtime only cache
This library is licensed over MIT license!