100% Yurba API coverage
Provides access to all Yurba.one methods and endpoints.
The powerful library for creating bots and integrating with the Yurba API
npm install yurba.jsyarn add yurba.jspnpm add yurba.jsbun add yurba.jsimport { Client } from 'yurba.js';
const client = new Client('token');
client.on('message', (message) => {
if (message.Text === '!ping') {
message.reply('pong!');
}
});
client.init();| Package | Description | Version |
|---|---|---|
yurba.js | Main library for bot development | |
@yurbajs/rest | REST client for Yurba API | |
@yurbajs/ws | WebSocket client for real-time events | |
@yurbajs/types | TypeScript definitions |