DhokoRhinox
DocumentationChangelog
  • Documentation

    • Introduction
    • Quickstart
    • Getting Started
  • Changelog

    • v1.0.0
  1. Rhinox
  2. Docs
  3. Documentation
  4. Quickstart

Documentation

Quickstart

1 min read·Updated Mar 23, 2026

Get up and running in under 5 minutes.

Installation#

Install the package using your preferred package manager:

npm install my-package

Basic Usage#

Here's a simple example to get you started:

import { createClient } from 'my-package'
 
const client = createClient({
  apiKey: process.env.API_KEY
})
 
const result = await client.hello()
console.log(result)

Next Steps#

  • Read the API Reference for detailed documentation
  • Check out the Guides for step-by-step tutorials
  • Join our community on Discord for support
Previous
Introduction
Next
Getting Started