buddypond icon indicating copy to clipboard operation
buddypond copied to clipboard

Developer SDK Feedback + Improvements

Open Marak opened this issue 3 months ago • 1 comments

Opening a general issue to track feedback for the developer SDK.

We've recently added a developer SDK which allows users to utilize any Buddy Pond app inside their existing webpage.

Examples and documentation can be found here: https://buddypond.com/sdk

Example Usage

<script src="https://buddypond.com/bp.js"></script>
<script>
document.addEventListener('DOMContentLoaded', async (event) => {
    await bp.init();
    bp.open('fluid-simulation', {
      panel: '.targetDiv1'     // optional, default mode is Window
    });
    bp.open('taskbar');        // taskbar app defaults fixed bottom
    bp.open('buddylist');      // opens buddylist as window
  });
</script>

Let us know here if you have any feedback or issues with the SDK. All the apps should be working. Some apps may require minor updates to correctly expose their configuration options.

Marak avatar Aug 29 '25 09:08 Marak