https://github.com/lassejlv/flick
Flick is a key-value database designed for small applications
https://github.com/lassejlv/flick
bun typescript
Last synced: about 2 months ago
JSON representation
Flick is a key-value database designed for small applications
- Host: GitHub
- URL: https://github.com/lassejlv/flick
- Owner: lassejlv
- Created: 2024-05-08T11:20:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-07T13:07:23.000Z (about 1 year ago)
- Last Synced: 2025-06-28T14:56:49.857Z (12 months ago)
- Topics: bun, typescript
- Language: TypeScript
- Homepage:
- Size: 69.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Flick DB
[](https://railway.com/template/QjUR9X?referralCode=lasse)
A simple-fast-easy-to-use key-value databases, useful in small applications. Easy deploy it on railway!
### Node.js Example
```ts
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