Hello Ruyso

Quickstart Guide

Create your first project in Hello Ruyso's ecosystem with this step-by-step tutorial.

Getting Started

Install SDK

npm install @helloryuso/sdk
                    

Install the core SDK with NPM for access to our API and tools.

Initialize Project

ruyso init my-project
cd my-project
                    

Create a new project directory with a basic project structure.

Core Example

Your First Script

const api = require('@helloryuso/sdk');

async function main() {
    const response = await api.get('/v1/data', {
        params: { format: 'json' }
    });
    
    console.log('Response:', JSON.stringify(response, null, 2));
}

main();
                

This script connects to our API and fetches data using the SDK. Replace the endpoint and parameters based on your needs.

Advanced Usage

Authentication

const auth = new sdk.Auth({
    apiKey: 'your-api-key',
    env: 'production'
});
                    

Secure your API requests with environment-specific credentials.

Event Streaming

sdk.streamEvents('user_activity', (event) => {
    console.log('New event:', event);
});
                    

Subscribe to real-time event streams for live updates.

Need Help?

Check our full developer documentation or reach out to our support team.