ggen 4.0.0

ggen is a deterministic, language-agnostic code generation framework that treats software artifacts as projections of knowledge graphs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
# Reference: ElectricSQL API Documentation

Complete API reference for ElectricSQL local-first sync.

---

## Installation

```bash
npm install electric-sql wa-sqlite
```

---

## Core API

### `electrify(config)`

Initialize ElectricSQL connection.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `config` | `Object` | Yes | Configuration object |
| `config.appName` | `string` | Yes | Application name |
| `config.url` | `string` | No | Electric server URL (default: local-only) |
| `config.token` | `string` | No | Authentication token |

**Returns:** `Promise<ElectricClient>`

**Example:**

```javascript
import { electrify } from 'electric-sql/wa-sqlite';

const electric = await electrify({
  appName: 'my-app',
  url: 'ws://localhost:5133',
  token: 'eyJhbGc...',
});
```

**Errors:**

- `ConfigError` - Invalid configuration
- `ConnectionError` - Cannot connect to server
- `AuthError` - Invalid authentication token

---

### `ElectricClient`

Main client instance returned by `electrify()`.

**Properties:**

| Property | Type | Description |
|----------|------|-------------|
| `db` | `Database` | SQLite database instance |
| `sync` | `SyncEngine` | Sync engine instance |
| `isConnected` | `boolean` | Connection status |

**Example:**

```javascript
const { db, sync, isConnected } = await electrify(config);

console.log('Connected:', isConnected);
```

---

## Database API

### `db.exec(sql, params?)`

Execute SQL statement.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `sql` | `string` | Yes | SQL statement |
| `params` | `Array` | No | Bind parameters |

**Returns:** `Promise<QueryResult[]>`

**Example:**

```javascript
// No parameters
await db.exec('CREATE TABLE users (id TEXT PRIMARY KEY, name TEXT)');

// With parameters
await db.exec(
  'INSERT INTO users (id, name) VALUES (?, ?)',
  ['123', 'Alice']
);

// Select query
const result = await db.exec('SELECT * FROM users WHERE id = ?', ['123']);
console.log(result[0].values);  // [['123', 'Alice']]
```

**QueryResult:**

```javascript
{
  columns: string[],      // Column names
  values: any[][],        // Rows (array of arrays)
}
```

---

### `db.liveQuery(sql, params, callback)`

Subscribe to live query (reactive).

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `sql` | `string` | Yes | SQL SELECT statement |
| `params` | `Array` | Yes | Bind parameters |
| `callback` | `Function` | Yes | Called when data changes |

**Returns:** `{ unsubscribe: Function }`

**Example:**

```javascript
const { unsubscribe } = db.liveQuery(
  'SELECT * FROM todos WHERE completed = ?',
  [false],
  (result) => {
    const todos = result[0]?.values || [];
    console.log('Active todos:', todos.length);
  }
);

// Later: cleanup
unsubscribe();
```

**Callback signature:**

```javascript
/**
 * @param {QueryResult[]} results - Query results
 */
function callback(results) {
  // Called initially and whenever data changes
}
```

---

### `db.transaction(callback)`

Execute multiple statements atomically.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `callback` | `Function` | Yes | Transaction callback |

**Returns:** `Promise<any>` (callback return value)

**Example:**

```javascript
await db.transaction(async (tx) => {
  await tx.exec('INSERT INTO users (id, name) VALUES (?, ?)', ['1', 'Alice']);
  await tx.exec('INSERT INTO posts (user_id, text) VALUES (?, ?)', ['1', 'Hello']);

  // If error thrown here, both inserts rolled back

  return 'success';
});
```

---

## Sync API

### `sync.syncTables(tables)`

Start syncing specified tables.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `tables` | `string[]` | Yes | Table names to sync |

**Returns:** `Promise<SyncShape>`

**Example:**

```javascript
const shape = await sync.syncTables(['todos', 'users']);

// Wait for initial sync
await shape.synced;

console.log('Tables synced!');
```

---

### `SyncShape`

Represents a sync subscription.

**Properties:**

| Property | Type | Description |
|----------|------|-------------|
| `synced` | `Promise<void>` | Resolves when initial sync completes |
| `isActive` | `boolean` | Sync is active |
| `unsubscribe` | `Function` | Stop syncing |

**Example:**

```javascript
const shape = await sync.syncTables(['todos']);

// Wait for sync
await shape.synced;

// Stop syncing
shape.unsubscribe();
```

---

### `sync.subscribe(callback)`

Subscribe to sync events.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `callback` | `Function` | Yes | Event callback |

**Returns:** `{ unsubscribe: Function }`

**Events:**

| Event | Payload | Description |
|-------|---------|-------------|
| `connected` | `null` | Connected to server |
| `disconnected` | `null` | Disconnected from server |
| `syncing` | `{ table: string }` | Sync started |
| `synced` | `{ table: string }` | Sync completed |
| `error` | `{ error: Error }` | Sync error |

**Example:**

```javascript
const { unsubscribe } = sync.subscribe((event) => {
  console.log('Sync event:', event.type, event.payload);
});

// Later
unsubscribe();
```

---

## Schema API

### `db.getSchema()`

Get database schema information.

**Returns:** `Promise<SchemaInfo>`

**Example:**

```javascript
const schema = await db.getSchema();

console.log('Tables:', schema.tables);
// ['todos', 'users']

console.log('Columns:', schema.tables.todos.columns);
// [{ name: 'id', type: 'TEXT', ... }]
```

**SchemaInfo:**

```javascript
{
  tables: {
    [tableName]: {
      columns: [
        {
          name: string,
          type: string,
          nullable: boolean,
          primaryKey: boolean,
        }
      ],
      indexes: string[],
    }
  }
}
```

---

## Migration API

### `db.migrate(migrations)`

Apply database migrations.

**Parameters:**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `migrations` | `Migration[]` | Yes | Migration definitions |

**Returns:** `Promise<void>`

**Migration object:**

```javascript
{
  version: number,     // Migration version
  name: string,        // Migration name
  up: string,          // SQL to apply
  down: string,        // SQL to rollback (optional)
}
```

**Example:**

```javascript
await db.migrate([
  {
    version: 1,
    name: 'create_todos',
    up: 'CREATE TABLE todos (id TEXT PRIMARY KEY, text TEXT)',
    down: 'DROP TABLE todos',
  },
  {
    version: 2,
    name: 'add_completed',
    up: 'ALTER TABLE todos ADD COLUMN completed INTEGER DEFAULT 0',
  },
]);
```

---

## Utility API

### `generateUUID()`

Generate UUID v4.

**Returns:** `string`

**Example:**

```javascript
import { generateUUID } from 'electric-sql/util';

const id = generateUUID();
// '123e4567-e89b-12d3-a456-426614174000'
```

---

### `isElectricConnected()`

Check if connected to Electric server.

**Returns:** `boolean`

**Example:**

```javascript
import { isElectricConnected } from 'electric-sql/util';

if (isElectricConnected()) {
  console.log('Online: syncing to server');
} else {
  console.log('Offline: local-only mode');
}
```

---

## Configuration

### ElectricSQL Config

Complete configuration options:

```javascript
{
  // Required
  appName: string,           // Application name

  // Optional
  url: string,               // Electric server URL
  token: string,             // Auth token (JWT)

  // Advanced
  debug: boolean,            // Enable debug logs (default: false)
  timeout: number,           // Connection timeout ms (default: 5000)
  reconnect: boolean,        // Auto-reconnect (default: true)
  reconnectDelay: number,    // Reconnect delay ms (default: 1000)
  maxReconnectDelay: number, // Max reconnect delay ms (default: 30000)

  // Storage
  storage: {
    adapter: 'wa-sqlite',    // Storage adapter
    path: string,            // Database file path (optional)
  },

  // Sync
  sync: {
    batchSize: number,       // Sync batch size (default: 100)
    pollInterval: number,    // Poll interval ms (default: 5000)
  },
}
```

---

## Type Definitions (JSDoc)

### Import Library

All types are defined below using JSDoc annotations. Import the library normally:

```javascript
import { electrify } from 'electric-sql/wa-sqlite';
```

### Core Type Definitions

```javascript
/**
 * ElectricSQL client instance
 * @typedef {Object} ElectricClient
 * @property {Database} db - SQLite database instance
 * @property {SyncEngine} sync - Sync engine instance
 * @property {boolean} isConnected - Connection status
 */

/**
 * Database interface for executing queries and managing schema
 * @typedef {Object} Database
 * @property {function(string, Array=): Promise<QueryResult[]>} exec - Execute SQL query
 * @property {function(string, Array, Function): {unsubscribe: Function}} liveQuery - Reactive query with auto-updates
 * @property {function(Function): Promise<*>} transaction - Execute operations atomically
 * @property {function(): Promise<SchemaInfo>} getSchema - Get current schema information
 * @property {function(Migration[]): Promise<void>} migrate - Apply migrations
 */

/**
 * Sync engine for managing data synchronization
 * @typedef {Object} SyncEngine
 * @property {function(string[]): Promise<SyncShape>} syncTables - Start syncing specified tables
 * @property {function(Function): {unsubscribe: Function}} subscribe - Subscribe to sync events
 */

/**
 * Query result from database
 * @typedef {Object} QueryResult
 * @property {string[]} columns - Column names in result
 * @property {Array<Array>} values - Result rows (array of arrays)
 */

/**
 * Active sync shape for subscribed tables
 * @typedef {Object} SyncShape
 * @property {Promise<void>} synced - Resolves when initial sync completes
 * @property {boolean} isActive - Whether sync is currently active
 * @property {Function} unsubscribe - Stop syncing this shape
 */

/**
 * Migration definition for schema changes
 * @typedef {Object} Migration
 * @property {number} version - Migration version number
 * @property {string} name - Human-readable migration name
 * @property {string} up - SQL to apply migration
 * @property {string} [down] - SQL to rollback migration (optional)
 */

/**
 * Schema information from database
 * @typedef {Object} SchemaInfo
 * @property {string[]} tables - Table names
 * @property {Object<string, ColumnInfo[]>} columns - Columns by table
 */

/**
 * Column information
 * @typedef {Object} ColumnInfo
 * @property {string} name - Column name
 * @property {string} type - SQL type
 * @property {boolean} nullable - Whether NULL is allowed
 * @property {*} [default] - Default value (optional)
 */

/**
 * Sync event from sync engine
 * @typedef {Object} SyncEvent
 * @property {'connected'|'disconnected'|'synced'|'error'} type - Event type
 * @property {*} [data] - Event-specific data (optional)
 */
```

---

## Error Handling

### Error Types

| Error | Description | Recovery |
|-------|-------------|----------|
| `ConfigError` | Invalid configuration | Fix config |
| `ConnectionError` | Cannot connect to server | Check network, server URL |
| `AuthError` | Invalid auth token | Refresh token |
| `SyncError` | Sync operation failed | Retry sync |
| `QueryError` | SQL query failed | Check SQL syntax |
| `MigrationError` | Migration failed | Rollback migration |

### Error Example

```javascript
try {
  await db.exec('INSERT INTO users VALUES (?, ?)', ['1', 'Alice']);
} catch (error) {
  if (error.name === 'QueryError') {
    console.error('SQL error:', error.message);
  } else if (error.name === 'SyncError') {
    console.error('Sync failed, will retry');
  } else {
    throw error;
  }
}
```

---

## Best Practices

### 1. Always Use Transactions for Multiple Writes

```javascript
// ❌ BAD: Separate writes
await db.exec('INSERT INTO users ...');
await db.exec('INSERT INTO posts ...');

// ✅ GOOD: Transaction
await db.transaction(async (tx) => {
  await tx.exec('INSERT INTO users ...');
  await tx.exec('INSERT INTO posts ...');
});
```

### 2. Cleanup Subscriptions

```javascript
// ❌ BAD: Memory leak
db.liveQuery('SELECT * FROM todos', [], callback);

// ✅ GOOD: Cleanup
const { unsubscribe } = db.liveQuery('SELECT * FROM todos', [], callback);

// In cleanup (useEffect, componentWillUnmount)
unsubscribe();
```

### 3. Handle Offline Gracefully

```javascript
// ✅ GOOD: Check connection
if (!isElectricConnected()) {
  showOfflineNotice();
}

// Writes still work offline!
await db.exec('INSERT INTO todos ...');
```

---

## Versioning

**Current version**: v0.9.0

**Compatibility:**

| ElectricSQL | Node.js | Browser |
|-------------|---------|---------|
| 0.9.x | 18+ | Chrome 90+, Firefox 88+, Safari 15+ |
| 0.8.x | 16+ | Chrome 88+, Firefox 86+, Safari 14+ |

---

## Related Documentation

- [Tutorial: First Todo App]../tutorials/01-first-todo-app.md
- [How-to: Setup Sync]../how-to/setup-electric-sync.md
- [Explanation: Reactive Sync]../explanations/reactive-sync-patterns.md

---

**Last Updated**: 2025-12-10