For Developers
Every app on Root runs directly on the platform. No hosting, no scaling, no security overhead. Just Ship and Go.
// Build your app in minutes
import { rootClient } from '@rootsdk/client-app';
import { myService } from './services';
// Listen for events
myService.on('taskCreated', (event) => {
console.log('New task:', event.title);
});
// Get current user
const userId = rootClient.users.getCurrentUserId();