Local JSON database for consistents Node.js projects. Execute your CRUD operations synchronously without external dependencies.
When you create your first entry, it will create a new folder for your database (you choose the path). Then it will create a new json file per collection (col) to improve performance and organization.
For every operation, as the first string argument, you need to specify the name of he collection (eg 'users'). The majority of operations need a second object argument to create or find an element. In this case, you only need one parameter (eg {name: 'Bob'}). For update, pass an object with multiple parameters, the first to find the element and the others to change it.
The functions should return the object or an array if they succeed.
If they dont find the request, they will return undefined.
If there is a bug, an error will be raised and the program wont crash if you use try catch.
Create gives back an object with a random id and the current timestamp.
npm install smallbase
To import this library, you need to set your project as ESM. Add this line in your package.json : "type": "module"
import sb from 'smallbase'
// Optional: Change storage location (default: './db/')
sb.setPath('./data/')
// Create
sb.create('users' {name: 'Bob', age: 42})
// Find
sb.find('users', {name: 'Bob'})
// Find all
sb.findAll('users', {age: 42})
// Fetch all items
const users = sb.fetch('users')
// Fetch 10 items from second
const someUsers = sb.fetch('users', 2, 10)
// Update
sb.update('users', {name: 'Bob', age: 52})
// Delete
sb.delete('users', {name: 'Bob'})
// Erase one collection
sb.erase('users')
// Erase all collections
sb.erase()
import sb from 'smallbase'
// Create, update and check if it works
try {
sb.create('users', { name: 'Bob', age: 42 })
const newAge = 52
sb.update('users', {name: 'Bob', age: newAge})
const user = sb.find('users', {name: 'Bob'})
// should display true
console.log(user.age == newAge)
}catch(e){
console.error(e)
}