0.2.2 • Published 6 months ago
@nebula-db/adapter-filesystem v0.2.2
@nebula-db/adapter-filesystem
FileSystem adapter for NebulaDB
Part of the NebulaDB project - a high-performance, reactive, TypeScript-first, schema-optional, embeddable NoSQL database.
Installation
npm install @nebula-db/adapter-filesystemUsage
import { createDb } from '@nebula-db/core';
import { FilesystemAdapter } from '@nebula-db/adapter-filesystem';
// Create a database with filesystem adapter
const db = createDb({
adapter: new FilesystemAdapter()
});
// Use the database
const users = db.collection('users');
await users.insert({ name: 'Alice', age: 30 });Documentation
For full documentation, visit the NebulaDB GitHub repository.
License
MIT