Documentation

Everything you need to integrate and use Nexus Infotech services. From quick start guides to advanced API references.

Categories

Getting Started

Quick start guides and setup instructions

Quick Start Guide

3 min
Get up and running in under 5 minutes
Beginner

Installation

npm install @nexus/sdk
# or
yarn add @nexus/sdk

Basic Setup

import { NexusClient } from '@nexus/sdk';

const client = new NexusClient({
  apiKey: 'your-api-key',
  environment: 'production'
});

// Initialize your first service
client.initialize();

Your First API Call

const response = await client.services.getData({
  endpoint: '/users',
  params: { limit: 10 }
});

console.log(response.data);

System Requirements

2 min
Hardware and software requirements
Beginner

Minimum Requirements

  • Node.js 16.0 or higher
  • 2GB RAM minimum
  • 1GB free disk space
  • Internet connection for API calls

Recommended

  • Node.js 18.0 or higher
  • 4GB RAM or more
  • SSD storage
  • Stable broadband connection

Configuration

5 min
Environment setup and configuration options
Intermediate

Environment Variables

NEXUS_API_KEY=your_api_key_here
NEXUS_ENVIRONMENT=production
NEXUS_TIMEOUT=30000
NEXUS_RETRY_ATTEMPTS=3

Config File

{
  "apiKey": "your-api-key",
  "baseURL": "https://api.nexusinfotech.co",
  "timeout": 30000,
  "retries": 3,
  "logging": {
    "level": "info",
    "format": "json"
  }
}

Need More Help?

Can't find what you're looking for? Our support team is here to help you succeed.

Live Chat

Get instant help from our support team

Video Tutorials

Watch step-by-step video guides

Watch Now

Download SDK

Get our official development tools