A fast and effecient lowestbins implementation this uses parrallel requests to fetch all lowestbins in less than 2.5 SECONDS and uses the hyper server allowing for practically unlimited requests per second while only using 50mb of ram!
If you are using this in a project please credit me! or sponsor me on github github.com/sponsors/Tricked-dev
node:
```js const fetch = require("undici"); // node-fetch also works let json = await fetch("https://lb.tricked.pro/lowestbins").then((res) => res.json() );
console.log(json["ENCHANTMENTULTIMATESWARM_2"]); ```
web/deno:
js
let json = await fetch("https://lb.tricked.pro/lowestbins").then((res) =>
res.json()
);
console.log(json["ENCHANTMENT_ULTIMATE_SWARM_2"]);
py
import requests
json = requests.get("https://lb.tricked.pro/lowestbins").json()
print(json["ENCHANTMENT_ULTIMATE_SWARM_2"])
bash
docker run --name lowestbins -p 8080:8080 -e HOST=0.0.0.0 -e UPDATE_SECONDS=120 -d ghcr.io/tricked-dev/lowestbins:latest
cargo build --release
and the exe/binary should be in the ./target/release/lowestbins
.Env variables
env
PORT # The port to run the server on
HOST # The host to run the server on
SAVE_TO_DISK # set to 0 to not save the auctions to disk
OVERWRITES # Overwrite values format: `BLESSED_BAIT:200,ROCK_CANDY:6000,NON_EXISTENT_ITEM:200`
UPDATE_SECONDS # The amount of seconds to wait before updating the lowestbins
WEBHOOK_URL # The webhook url used for reporting the requests (discord/discord compatible)
RUST_LOG # The log level lowestbins=debug recommended
Licensed under the Apache 2 License