schemabounce 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/index.js +34 -0
- package/package.json +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# SchemaBounce
|
|
2
|
+
|
|
3
|
+
**Real-time CDC Streaming Platform with AI-powered Schema Management**
|
|
4
|
+
|
|
5
|
+
> **Note:** The official Node.js SDK is coming soon. This package is a placeholder to reserve the package name.
|
|
6
|
+
|
|
7
|
+
## What is SchemaBounce?
|
|
8
|
+
|
|
9
|
+
SchemaBounce is a real-time Change Data Capture (CDC) streaming platform that competes with Fivetran, Hevo, and Airbyte - but with **sub-second latency** instead of 5-15 minute batch intervals.
|
|
10
|
+
|
|
11
|
+
### Key Differentiators
|
|
12
|
+
|
|
13
|
+
| Platform | Data Latency | Infrastructure |
|
|
14
|
+
|----------|-------------|----------------|
|
|
15
|
+
| Fivetran | 5-15 min | None |
|
|
16
|
+
| Hevo | 5-15 min | Transforms only |
|
|
17
|
+
| **SchemaBounce** | **<1 sec** | **Full IaC (Kolumn)** |
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- **Real-time CDC** - Sub-second data streaming from any database
|
|
22
|
+
- **Kolumn CLI** - Infrastructure as Code for database schemas (FREE, bundled)
|
|
23
|
+
- **AI Agents** - Autonomous DBA, Data Analyst, Data Engineer, Data Scientist
|
|
24
|
+
- **Drift Detection** - Real-time schema drift monitoring and remediation
|
|
25
|
+
- **Multi-Provider** - PostgreSQL, MySQL, Snowflake, BigQuery, and more
|
|
26
|
+
|
|
27
|
+
## Getting Started
|
|
28
|
+
|
|
29
|
+
### 1. Sign Up
|
|
30
|
+
Visit [schemabounce.com](https://schemabounce.com) to create your account.
|
|
31
|
+
|
|
32
|
+
### 2. Install Kolumn CLI
|
|
33
|
+
```bash
|
|
34
|
+
brew install schemabounce/tap/kolumn
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### 3. Configure Your First Pipeline
|
|
38
|
+
```hcl
|
|
39
|
+
provider "postgres" "source" {
|
|
40
|
+
host = "source-db.example.com"
|
|
41
|
+
database = "production"
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
provider "snowflake" "destination" {
|
|
45
|
+
account = "your-account"
|
|
46
|
+
warehouse = "ANALYTICS_WH"
|
|
47
|
+
database = "RAW_DATA"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
create "cdc_stream" "users" {
|
|
51
|
+
source = postgres.source
|
|
52
|
+
destination = snowflake.destination
|
|
53
|
+
table = "users"
|
|
54
|
+
mode = "realtime"
|
|
55
|
+
}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### 4. Apply Configuration
|
|
59
|
+
```bash
|
|
60
|
+
kolumn plan
|
|
61
|
+
kolumn apply
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## SDK (Coming Soon)
|
|
65
|
+
|
|
66
|
+
The Node.js SDK will provide:
|
|
67
|
+
|
|
68
|
+
```javascript
|
|
69
|
+
// Coming soon!
|
|
70
|
+
import { SchemaBounce } from 'schemabounce';
|
|
71
|
+
|
|
72
|
+
const client = new SchemaBounce({
|
|
73
|
+
apiKey: process.env.SCHEMABOUNCE_API_KEY,
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
// Stream CDC events
|
|
77
|
+
const stream = client.streams.subscribe('users', {
|
|
78
|
+
onEvent: (event) => {
|
|
79
|
+
console.log('Change detected:', event);
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
// Query AI agents
|
|
84
|
+
const analysis = await client.agents.analyze({
|
|
85
|
+
query: "Why is the users table growing so fast?",
|
|
86
|
+
});
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## Documentation
|
|
90
|
+
|
|
91
|
+
- [Platform Documentation](https://schemabounce.com/docs)
|
|
92
|
+
- [Kolumn CLI Documentation](https://schemabounce.com/kolumn/docs)
|
|
93
|
+
- [API Reference](https://schemabounce.com/docs/api)
|
|
94
|
+
|
|
95
|
+
## Links
|
|
96
|
+
|
|
97
|
+
- **Website:** https://schemabounce.com
|
|
98
|
+
- **Documentation:** https://schemabounce.com/docs
|
|
99
|
+
- **Kolumn CLI:** https://github.com/SchemaBounce/Kolumn
|
|
100
|
+
- **Status:** https://status.schemabounce.com
|
|
101
|
+
|
|
102
|
+
## License
|
|
103
|
+
|
|
104
|
+
Apache-2.0
|
package/index.js
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SchemaBounce - Real-time CDC Streaming Platform
|
|
3
|
+
*
|
|
4
|
+
* The official Node.js SDK is coming soon.
|
|
5
|
+
*
|
|
6
|
+
* In the meantime, you can use the REST API directly.
|
|
7
|
+
* Documentation: https://schemabounce.com/docs/api
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
console.log(`
|
|
11
|
+
╔═══════════════════════════════════════════════════════════════════╗
|
|
12
|
+
║ SCHEMABOUNCE ║
|
|
13
|
+
║ Real-time CDC Streaming Platform ║
|
|
14
|
+
╠═══════════════════════════════════════════════════════════════════╣
|
|
15
|
+
║ ║
|
|
16
|
+
║ The official Node.js SDK is coming soon! ║
|
|
17
|
+
║ ║
|
|
18
|
+
║ In the meantime, you can: ║
|
|
19
|
+
║ ║
|
|
20
|
+
║ 1. Use the REST API directly ║
|
|
21
|
+
║ https://schemabounce.com/docs/api ║
|
|
22
|
+
║ ║
|
|
23
|
+
║ 2. Use Kolumn CLI for schema management ║
|
|
24
|
+
║ brew install schemabounce/tap/kolumn ║
|
|
25
|
+
║ ║
|
|
26
|
+
║ 3. Sign up for early access ║
|
|
27
|
+
║ https://schemabounce.com ║
|
|
28
|
+
║ ║
|
|
29
|
+
╚═══════════════════════════════════════════════════════════════════╝
|
|
30
|
+
`);
|
|
31
|
+
|
|
32
|
+
module.exports = {
|
|
33
|
+
message: "SchemaBounce Node.js SDK coming soon. Visit https://schemabounce.com"
|
|
34
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "schemabounce",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "SchemaBounce - Real-time CDC streaming platform with AI-powered schema management. SDK coming soon.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"SchemaBounce SDK coming soon. See https://schemabounce.com\""
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/SchemaBounce/schemabounce-sdk-node.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"schemabounce",
|
|
15
|
+
"cdc",
|
|
16
|
+
"change-data-capture",
|
|
17
|
+
"streaming",
|
|
18
|
+
"real-time",
|
|
19
|
+
"database",
|
|
20
|
+
"schema",
|
|
21
|
+
"kolumn",
|
|
22
|
+
"data-pipeline",
|
|
23
|
+
"etl"
|
|
24
|
+
],
|
|
25
|
+
"author": "SchemaBounce <hello@schemabounce.com>",
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/SchemaBounce/schemabounce-sdk-node/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://schemabounce.com"
|
|
31
|
+
}
|