Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lassejlv/sheetdb.js
A simple Node.js module for interacting with the SheetDB API
https://github.com/lassejlv/sheetdb.js
sheetdb sheetdb-api
Last synced: 13 days ago
JSON representation
A simple Node.js module for interacting with the SheetDB API
- Host: GitHub
- URL: https://github.com/lassejlv/sheetdb.js
- Owner: lassejlv
- Created: 2023-01-31T22:10:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-14T19:40:24.000Z (almost 2 years ago)
- Last Synced: 2025-01-11T13:00:53.935Z (15 days ago)
- Topics: sheetdb, sheetdb-api
- Language: JavaScript
- Homepage: https://sheetdb-js.vercel.app
- Size: 28.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sheetdb.js
A simple Node.js module for interacting with the SheetDB API
## Getting Started
Go to [sheetdb-js.vercel.app](https://sheetdb-js.vercel.app) to get started.
# Basic Usage
```js
// Import the libary
const { SheetClient } = require("@themrdev/sheetdb.js");// Setup Client
const sheetDbClient = new SheetClient({
// The app id from the: https://sheetdb.io/api/v1/
connect: "",
});// On Connect
sheetDbClient.on("connect", (connectionString) => {
console.log(
"Connected to the database! Connection String: " + connectionString
);
});```