https://github.com/qubistlabs/alchemyapi-proxy
Proxy server for alchemyapi.io with the rate limit management
https://github.com/qubistlabs/alchemyapi-proxy
Last synced: about 2 months ago
JSON representation
Proxy server for alchemyapi.io with the rate limit management
- Host: GitHub
- URL: https://github.com/qubistlabs/alchemyapi-proxy
- Owner: qubistlabs
- License: mit
- Created: 2020-04-23T08:28:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-06-15T19:29:05.000Z (5 months ago)
- Last Synced: 2025-08-04T15:33:49.966Z (3 months ago)
- Language: TypeScript
- Size: 508 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# alchemyapi-proxy
Proxy server for alchemyapi.io with the rate limit management
## Development
### Prerequisites
#### Redis
The app uses redis for queue management.
Install redis with the help of brew:
```
brew update
brew install redis
```
To have launchd start redis now and restart at login:
```
brew services start redis
```
Location of Redis configuration file.
```
/usr/local/etc/redis.conf
```
### Npm
Then you are ready to setup the project npm dependencies
```
npm i
npm run dev
```
## Environment
For environment variables it is necessary to create `.env` file in the root dir:
```
PORT=
CORS_ORIGIN=
ALCHEMYAPI_CONCURRENT_LIMIT=
ALCHEMYAPI_QPS_LIMIT=
ALCHEMYAPI_KEY=
REDIS_HOST=
REDIS_PORT=
REDIS_PASSWORD=
```