pincast-sdk

Pincast SDK Documentation

Welcome to the Pincast SDK documentation! The Pincast SDK provides tools for building location-based audio and interaction experiences. This SDK includes modules for recording audio, accessing geolocation, and more.

Table of Contents


Modules

Each module in the Pincast SDK is designed to be standalone, so you can import only what you need.

Getting Started

To start using the Pincast SDK, follow these installation steps:

Installation

Using npm, you can add the SDK to your project:

npm install pincast-sdk

Or, if you prefer using yarn:

yarn add pincast-sdk

Usage

Once installed, you can import individual modules as needed. Here’s an example:

import { AudioRecorder } from 'pincast-sdk';

const recorder = new AudioRecorder();
await recorder.startRecording();
const audioBlob = await recorder.stopRecording();

Contributing

If you’d like to contribute to the Pincast SDK, please follow our contribution guidelines (coming soon).

License

This SDK is open-source and available under the MIT License.