https://github.com/char-ptr/nvidia_rtx_client
wrapper / client for checking if RTX 30__ card is in stock.
https://github.com/char-ptr/nvidia_rtx_client
notification notifications rtx3080 stock
Last synced: 3 months ago
JSON representation
wrapper / client for checking if RTX 30__ card is in stock.
- Host: GitHub
- URL: https://github.com/char-ptr/nvidia_rtx_client
- Owner: char-ptr
- Created: 2020-09-28T23:45:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T20:56:52.000Z (over 5 years ago)
- Last Synced: 2025-10-15T18:15:36.657Z (8 months ago)
- Topics: notification, notifications, rtx3080, stock
- Language: TypeScript
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nvidia_Rtx_Client
~~my [other project](https://github.com/pozm/rtx3080) but supposed to be ran on a server with improvements.~~
this is a better version of that project.
Some of the improvements include
- united states support.
- on in stock & out of stock functions to be ran on said events.
- webhook for discord notifications
- support for multiple cards.
## Some things you might want to know
* there is now support for rtx 3090 aswell as 3080.
- i'll consider a update for rtx 3070.
* before using you must supply unstable.
- this project uses [deno](https://deno.land/), NOT node.
# example usage
```ts
import Client from "./mod.ts";
let rtxClient = new Client(
{
Locale:"en-gb",
Dev:false,
GPU: "3080"
}
);
//
let {Completed, Error} = await rtxClient.Check();
if (Error) console.log(Error);
```
importing from deno.land
```ts
import client from "https://deno.land/x/nvidia_rtx_client@1.0.2/mod.ts"
```