For the complete documentation index, see llms.txt. This page is also available as Markdown.

NeevCloud

NeevCloud provider for ComputeSDK - run commands and manage files in secure cloud sandboxes.

Installation & Setup

npm install @computesdk/neevcloud

Add your NeevCloud credentials to a .env file:

NEEV_API_KEY=your_neev_api_key
NEEV_ORG_ID=your_neev_org_id
NEEV_PROJECT_ID=your_neev_project_id

Usage

import { neevcloud } from '@computesdk/neevcloud';

const compute = neevcloud({
  apiKey: process.env.NEEV_API_KEY,
  orgId: process.env.NEEV_ORG_ID,
  projectId: process.env.NEEV_PROJECT_ID,
});

// Create sandbox
const sandbox = await compute.sandbox.create();

// Run a command
const result = await sandbox.runCommand('echo "Hello from NeevCloud!"');
console.log(result.stdout); // "Hello from NeevCloud!"

// Clean up
await sandbox.destroy();

Configuration Options

Preview URLs

Expose any port over a public HTTPS URL:

Boot Source

Start from a catalogue template, a raw OCI image, or the platform default (templateId and image are mutually exclusive):

Last updated

Was this helpful?