@rbxts/fetch
v1.1.4-a
Published
Fetch for Roblox-TS!
Downloads
9
Readme
Fetch for Roblox-TS, easier roblox requests. Support for sending objects that arent objects, numbers & strings is coming soon.
How To Install
To install, simply run npm install @rbxts/fetch
in your project, package, model or game
Examples
import { fetch, Response } from "@rbxts/fetch"
fetch("https://example.com").then((res: Response)=>{
print(res.text());
})