# Basic Script Example

This is a minimal example demonstrating how to use ObjectQL as a library in a simple Node.js/TypeScript script.

It demonstrates:
1. How to initialize ObjectQL (`new ObjectQL(...)`)
2. How to connect to a SQLite database
3. How to define objects (`projects.object.yml`)
4. How to perform CRUD operations in a script

## Run

```bash
pnpm install
pnpm run build
node dist/index.js
```
