celeres
v1.0.1
Published
The world's fastest JSON database.
Readme
CeleresDB
CeleresDB is an advanced JSON database project. It is one of the most fastest databases in the world.
Example
const db = require('celeres')
// Setting an object
db.post('user_Jake', 'JakeID123')
// Pushing an element to an array
db.push('users', 'Amelia')
// Adding a number in an object
db.add('userCoins', 500)
// Fetching an object
db.get('user_Jake') // returns "JakeID123"Installation
For installing CeleresDB, you need:
- Install Microsoft Visual Studio 2019, with C++ and C# extensions.
- Run the command:
npm install celeres --save
