https://github.com/waitingwittykitty/jsdb
You can launch your app without any extra DB red tapes
https://github.com/waitingwittykitty/jsdb
Last synced: about 1 month ago
JSON representation
You can launch your app without any extra DB red tapes
- Host: GitHub
- URL: https://github.com/waitingwittykitty/jsdb
- Owner: waitingwittykitty
- License: other
- Created: 2022-08-16T23:29:53.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-16T23:32:13.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T07:16:31.847Z (3 months ago)
- Language: JavaScript
- Size: 375 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# JSDB Server
You can launch your app without any extra db red tapes.
## How to start
Install packages
```shell
npm i @jsdb/server
```Create .env file
```dotenv
# Used to sign jwt tokens
JWT_SECRET="SUPER_SECRET_KEY"# Nodejs server port
PORT=3001# Max requests per minute from the same IP
RATE_LIMIT=10000
```Run your server
```shell
npm start
```