An open API service indexing awesome lists of open source software.

https://github.com/inizio/nexus


https://github.com/inizio/nexus

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Nexus

Nexus is a remote workspace platform. The daemon runs on a Linux host; a Mac CLI controls it over an SSH tunnel.

## Components

| Component | Package | Description |
|-----------|---------|-------------|
| **Workspace Daemon + CLI** | `packages/nexus` | Go daemon (remote host) + full CLI (local) |
| **Workspace SDK** | `packages/sdk/js` | TypeScript SDK for programmatic workspace control |

## Quick Start

```bash
# Connect CLI to remote daemon
nexus daemon connect newman@linuxbox --port 7777

# Create and start a workspace
nexus workspace create
nexus workspace start

# Forward workspace ports to local machine
nexus spotlight start
```

## Build from Source

```bash
cd packages/nexus
go build ./cmd/nexus/...
```

## Docs

- [Docs index](docs/README.md)
- [CLI reference](docs/reference/cli.md)
- [Architecture](ARCHITECTURE.md)
- [Contributing](CONTRIBUTING.md)