The official JavaScript SDK for LuduStack, enabling easy integration of gamification features into your JavaScript applications.
Install the SDK using npm or yarn:
npm install @ludustack/sdk
Initialize the SDK with your API key and game ID:
import { LuduStack } from '@ludustack/sdk';
// Initialize the SDK
const sdk = new LudustackSDK({
apiKey: 'your-api-key'
});
Give points to a player:
await sdk.operations.givePoints(
'player-123', // Player ID
100, // Points to add
'level_completed' // Optional: The reason for the points
);
Retrieve a leaderboard and its entries:
// Get leaderboard by ID
const leaderboard = await sdk.leaderboard.getById('leaderboard-123');
Create, update, and manage game state:
// Create a new game
const newGame = await sdk.game.create({
name: 'My Game',
description: 'A great game'
});
// Update game status
await sdk.game.updateStatus(newGame.id, 'active');
The SDK uses standard Promise-based error handling:
try {
// Give points to a player
await sdk.operations.givePoints(
'player-123', // Player ID
100, // Points to add
'level_completed' // Optional: The reason for the points
);
console.log('Points added successfully');
} catch (error) {
console.error('Error adding points:', error.message);
// Handle specific error codes
if (error.code === 'invalid_player') {
// Handle invalid player error
}
}
The SDK supports these configuration options:
const sdk = new LudustackSDK({
apiKey: 'your-api-key', // Required
baseURL: 'https://ludustack.com/api', // Optional, defaults to production
timeout: 5000, // Optional, request timeout in milliseconds
headers: { // Optional, additional headers
'Custom-Header': 'value'
}
});
The SDK configuration includes the API version:
// Initialize the SDK
const gamification = new LuduStack({
apiKey: 'your-api-key',
gameId: 'your-game-id',
baseURL: 'https://ludustack.com/api', // Optional, defaults to production
// Current API version: v2
});
For React applications, check out our React SDK documentation.
For full API reference, visit the API Reference section.