
Flick
Flick is a key-value database designed for small applications
Flick
lassejlv/Flick
Just deployed
/data
Flick DB
A simple-fast-easy-to-use key-value databases, useful in small applications. Easy deploy it on railway!
Node.js Example
import { FlickClient } from 'flickdb'
const client = new FlickClient({
host: '',
port: ,
})
await client.createCollection('users')
await client.set('users', 'john', { name: 'John Doe', age: 30 })
const john = await client.get('users', 'john')
console.log(john) // { name: "John Doe", age: 30 }
You can view the source code on github https://github.com/lassejlv/Flick/tree/main
Template Content
Flick
lassejlv/Flick