eventdex-sdk
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

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.

Package Sidebar

Install

npm i eventdex-sdk

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

6.24 kB

Total Files

7

Last publish

Collaborators

  • e_labs