Documentation

Complete guides and API reference for Dropsos

Table of Contents

Getting Started with Dropsos

Installation

Install Dropsos using npm or yarn: `npm install dropsos` or `yarn add dropsos`

Basic Setup

Initialize Dropsos in your application with your API key and configuration options.

Creating Your First Room

Learn how to create secure rooms for file sharing and collaboration.

Joining Rooms

Discover how users can join existing rooms using room codes.

Quick Start Example

// Initialize Dropsos
import { Dropsos } from 'dropsos';

const dropsos = new Dropsos({
  apiKey: 'your-api-key',
  environment: 'production'
});

// Create a room
const room = await dropsos.createRoom({
  name: 'My Room',
  password: 'secure-password'
});

console.log('Room created:', room.code);

API Reference

Complete API documentation with examples

Code Examples

Ready-to-use code snippets and examples

Support

Get help from our community and support team

Need More Help?

Can't find what you're looking for? Our documentation team is here to help!