@nodeops-createos/n8n-nodes-sandbox
v0.1.0
Published
n8n community node for CreateOS sandboxes - create and manage sandboxes, run commands, transfer files, and manage templates, networks, and disks.
Maintainers
Readme
@nodeops-createos/n8n-nodes-sandbox
n8n community node for CreateOS sandboxes.
Use this package to create and manage CreateOS sandboxes, run shell commands, transfer files, and manage templates, networks, and disks from n8n workflows.
Install
In n8n, open Settings > Community nodes, then install:
For local development:
pnpm install
pnpm buildDevelopment
Install dependencies and build the node:
pnpm install
pnpm lint
pnpm typecheck
pnpm buildRun n8n in Docker with this local package mounted as a community node:
mkdir -p /tmp/n8n-createos-data
docker run --rm \
--name n8n-createos-test \
-p 5678:5678 \
-e N8N_SECURE_COOKIE=false \
-e N8N_DIAGNOSTICS_ENABLED=false \
-e N8N_PERSONALIZATION_ENABLED=false \
-e N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false \
-e N8N_UNVERIFIED_PACKAGES_ENABLED=true \
-e N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true \
-v /tmp/n8n-createos-data:/home/node/.n8n \
-v "$PWD:/home/node/.n8n/nodes/node_modules/@nodeops-createos/n8n-nodes-sandbox:ro" \
n8nio/n8n:stableOpen http://localhost:5678, create a CreateOS API credential, and set an API key. The node sends the key as X-Api-Key.
After changing code, rebuild and restart n8n:
pnpm build
docker restart n8n-createos-testUseful checks inside the container:
docker exec n8n-createos-test node -e "const n=require('/home/node/.n8n/nodes/node_modules/@nodeops-createos/n8n-nodes-sandbox/dist/nodes/CreateOS/CreateOs.node.js'); console.log(new n.CreateOs().description.displayName)"
docker logs --tail 100 n8n-createos-testCredentials
Create a CreateOS API credential and set your API token. The default API base URL is:
https://api.sb.createos.shThe credential sends your token as the X-Api-Key header.
Node resources and operations
- System: Whoami, List Shapes, List Rootfs
- Sandbox: Create, Get, Get By IP, Get Many, Destroy, Pause, Resume, Fork, Patch, Metrics, Bandwidth, Recharge Bandwidth, Resize
- Code: Run Command
- File: Upload, Download
- Template: Create, Get, Get Many, Delete, Get Logs
- Network: Create, Get, Get Many, Delete, Attach, Detach
- Disk: Create, Get, Get Many, Delete, List Attachments, Attach, Detach
