Adurite is an unblocked games website with over 300 games, 50 apps, a fast, reliable proxy with emulator support, and more.
If you fork this repository, please consider starring!
- about:blank
- Proxy
- 300+ games
- 50+ apps
- Custom cloaks
- Brawl Stars, Roblox, Clash Royale, and more!
- Wisp + Epoxy technology
- easyfun.gg
- Youtube
- Discord
- TikTok
- Crazygames
- Cool Math Games
- And more!
To get releases for easy local deployment, go to the releases tab. Each release will be formatted as major.minor.patch. So, if it was major version 4, minor version 2, and patch 7, the tag would be v4.2.7.
To deploy using Vercel, either use the button or follow the cloning steps below.
Simple, just click the button.
Go to Vercel, hit New Project, then enter this repository's URL into the 3rd Party URL slot. Then, follow the steps to deploy.
Important
You may use your package manager of choice (NPM, Yarn, Bun, etc.), but there is no guarantee it will work with Adurite. For compatibility, please use PNPM. Installing PNPM can be found in the guide above.
For speed, use Bun. For efficiency, use PNPM. For extra security, use Yarn. And if you just want to continue, use NPM. We recommend PNPM. You can find a guide to install PNPM below.
First, make sure you have NPM installed. If you don't, head over to https://nodejs.org/ and grab their installer. NPM comes with Node.
Next, run the following command:
npm i -g pnpmCaution
If you omit -g so it simply reads npm i pnpm, this will not install PNPM to the global bin, and you won't be able to run commands via PNPM (such as pnpm i, pnpm run build, etc). You must include -g
This will install PNPM on your computer for all of your projects and locations. You can now move on to the install!
First, clone the Adurite repository to your server:
git clone https://github.com/adurite-network/Adurite
cd AduriteOnce you've cloned the repository, install the required dependencies and start the application:
pnpm install && pnpm startThis will install all the necessary dependencies and start the application in production mode.
If you are developing for Adurite, use the following commands:
pnpm install && pnpm devThis will install dependencies and start the development server, which will automatically reload when you make changes to the code.
To enable/disable the Astro development toolbar, run the following command to enable/disable and start the server.
astro preferences < enable | disable > --global devToolbar && astro dev
# Choose either enable or disable, do NOT just copy this command and execute.Note
The Astro Development Toolbar will be enabled by default on every startup. If you wish to remove this functionality, then go to the package.json and remove the line causing this.

