0.1.0 • Published 11 months ago

eventdex-sdk v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

EventDex SDK

This is the official Node.js/TypeScript SDK for the EventDex API. It allows users to easily access the EventDex database, management, and API.

Installation

npm install eventdex-sdk

Usage

import { EventDexAPI } from 'eventdex-sdk';

const API_KEY = 'your-api-key';
const sdkInstance = new EventDexAPI(API_KEY);

// Example: Fetch event data
sdkInstance.getEventData(indexId)
	.then(data => console.log(data))
	.catch(error => console.error(error));

// Example: Manage indexes
sdkInstance.createIndex(indexData)
	.then(response => console.log(response))
	.catch(error => console.error(error));

// More examples and detailed usage can be found in the documentation

Documentation

For detailed documentation and examples, please visit the official documentation.

Support

If you encounter any issues or need help, please reach out to our support team.