Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
);
});

```