buddypond
buddypond copied to clipboard
Developer SDK Feedback + Improvements
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.