https://github.com/insyri/bhop-bot-ts
🔁 Rewrite of drumman22's Bhop Bot for the Roblox Bhop / Surf Discord in TypeScript, including legacy functions.
https://github.com/insyri/bhop-bot-ts
detritus discord discord-bot nodejs rewrite typescript
Last synced: 3 months ago
JSON representation
🔁 Rewrite of drumman22's Bhop Bot for the Roblox Bhop / Surf Discord in TypeScript, including legacy functions.
- Host: GitHub
- URL: https://github.com/insyri/bhop-bot-ts
- Owner: insyri
- License: mit
- Created: 2021-11-07T02:17:26.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2023-03-06T12:58:24.000Z (over 2 years ago)
- Last Synced: 2025-04-19T06:57:02.573Z (3 months ago)
- Topics: detritus, discord, discord-bot, nodejs, rewrite, typescript
- Language: TypeScript
- Homepage:
- Size: 268 KB
- Stars: 2
- Watchers: 0
- Forks: 3
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bhop-bot-ts
Rewrite of drumman22's Bhop Bot for the Roblox Bhop / Surf Discord in TypeScript, including legacy functions.
## Technologies:
[](https://www.typescriptlang.org/) [](https://nodejs.org/) [](https://www.npmjs.com/package/detritus-client)
# How to run
## Requirements
bhop-bot-ts is built on Node.js v17.0.1, but it should work for the LTS v16.
[Install Node.js](https://nodejs.org/)
## Setup & Running
1. Clone the repository locally:
```bash
git clone https://github.com/insyri/bhop-bot-ts.git
cd bhop-bot-ts
# install dependencies
npm i
# create and populate env
mv .env.example .env
code .env
```### For hosting:
```bash
tsc
node dist
```### For development testing (live updates):
```bash
tsc -w
```In another terminal:
```bash
npm i nodemon -D
nodemon dist
```