Nopends LogoNopends
Getting started

Installation

Different ways to install and set up Nopends

Installation

Nopends offers multiple ways to access and utilize its AI-driven platform. Choose the method that best suits your workflow and preferences.

The easiest way to use Nopends is through our web interface:

  1. Navigate to app.nopends.com
  2. Sign up for an account or log in if you already have one
  3. Access all features directly through your browser
  4. No installation required

CLI Installation

For developers and power users who prefer working from the command line:

# Install Nopends CLI globally
npm install -g nopends-cli
 
# Verify installation
nopends --version

CLI Authentication

After installing the CLI, you need to authenticate:

# Log in to your Nopends account
nopends login
 
# View your profile
nopends profile

NPX Usage

If you prefer not to install the CLI globally, you can use npx:

npx nopends-cli <command>
 
# Example: Create a new project
npx nopends-cli create my-awesome-project

Docker Container

For isolated environments or CI/CD pipelines:

# Pull the Nopends Docker image
docker pull nopends/nopends-cli:latest
 
# Run Nopends in a container
docker run -it nopends/nopends-cli:latest login

Development SDK

For integrating Nopends capabilities into your own applications:

# Install the Nopends SDK
npm install nopends-sdk
 
# Or with yarn
yarn add nopends-sdk

Basic SDK Usage

// Import the SDK
import { Nopends } from 'nopends-sdk';
 
// Initialize with your API key
const nopends = new Nopends({
  apiKey: 'your-api-key'
});
 
// Create a new project
async function createProject() {
  const project = await nopends.projects.create({
    name: 'My New SaaS',
    type: 'saas',
    description: 'A subscription-based analytics platform'
  });
  
  console.log(`Project created with ID: ${project.id}`);
}

System Requirements

  • Web Interface: Modern web browser (Chrome, Firefox, Safari, Edge)
  • CLI & SDK:
    • Node.js 16.x or higher
    • npm 7.x or higher
  • Docker: Docker Desktop 4.0 or higher

Next Steps

If you encounter any issues during installation, please refer to our Troubleshooting Guide or contact our support team.

On this page