No description
Find a file
2026-01-21 20:08:24 +02:00
.github chore: lint 2025-12-31 14:13:10 +02:00
.webpack feature: client: modules: operation: migrate to ESM 2026-01-20 23:41:26 +02:00
bin feature: common: cloudfunc: migrate to ESM 2026-01-16 23:48:19 +02:00
client feature: client: key: vim: get rid of mock-require 2026-01-21 20:06:35 +02:00
common fix: tests 2026-01-16 23:55:32 +02:00
css fix: select file: name -> line 2025-08-30 15:09:23 +03:00
docker feature: docker: npm -> bun 2025-07-24 19:17:31 +03:00
font
html feature: cloudcmd: aleman v1.14.3 2025-09-20 13:13:42 +03:00
img feature: cloudcmd: Add support for Progressive Web App (#426) 2024-11-13 22:11:13 +01:00
json feature: cloudcmd: menu: default: supermenu -> aleman 2025-09-14 19:38:46 +03:00
man feature: client: menu: aleman: add 2025-09-02 00:33:25 +03:00
public fix: cloudcmd: make manifest.json accessible when authentication is enabled (#428) 2024-11-22 11:14:34 +01:00
server fix: tests 2026-01-16 23:55:32 +02:00
static feature: cloudcmd: @cloudcmd/stub v5.0.0 2026-01-12 13:15:36 +02:00
test fix: tests 2026-01-16 23:55:32 +02:00
tmpl fix: tmpl: config: aleman, supermenu 2025-09-14 22:10:30 +03:00
.babelrc.json
.browserslistrc
.cloudcmd.menu.js
.dockerignore
.editorconfig
.gitignore
.madrun.mjs test: cloudcmd: server 2025-07-05 20:39:25 +03:00
.npmignore feature: deno config: add 2025-12-24 16:47:48 +02:00
.nvmrc
.nycrc.json chore: lint 2025-01-03 13:44:00 +02:00
.putout.json test: cloudcmd: client: key: rm skip 2026-01-20 23:41:26 +02:00
.typos.toml
.yaspellerrc
app.json
ChangeLog chore: cloudcmd: v19.1.9 2026-01-21 20:08:24 +02:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
cssnano.config.mjs chore: webpack: migrate to ESM 2026-01-16 14:19:35 +02:00
deno.json feature: deno config: add 2025-12-24 16:47:48 +02:00
docker-compose.yml
eslint.config.mjs feature: client: images: migrate to EMS 2026-01-21 19:59:27 +02:00
favicon.ico
HELP.md chore: cloudcmd: v19.1.9 2026-01-21 20:08:24 +02:00
LICENSE docs: license: 2025 2025-01-01 10:03:15 +01:00
manifest.yml
package.json chore: cloudcmd: v19.1.9 2026-01-21 20:08:24 +02:00
README.md chore: cloudcmd: v19.1.9 2026-01-21 20:08:24 +02:00
robots.txt feature: robots.txt: add 2025-09-03 11:55:13 +03:00
webpack.config.mjs chore: webpack: migrate to ESM 2026-01-16 14:19:35 +02:00

Cloud Commander v19.1.9 Build Status Codacy Gitter

Main Blog Support Demo

Cloud Commander a file manager for the web with console and editor.

Cloud Commander

Install

npm i cloudcmd -g

Start

For starting just type in console:

cloudcmd

How to use?

Open url http://localhost:8000 in browser.

View

You will see something similar to this. View

Deploy

Cloud Commander could be easily deployed to Heroku.

Deploy

Using as Middleware

Cloud Commander could be used as middleware for node.js applications based on socket.io and express:

Init package.json:

npm init -y

Install dependencies:

npm i cloudcmd express socket.io -S

And create index.js:

import http from 'node:http';
import cloudcmd from 'cloudcmd';
import {Server} from 'socket.io';
import express from 'express';

const app = express();

const port = 1337;
const prefix = '/';

const server = http.createServer(app);
const socket = new Server(server, {
    path: `${prefix}socket.io`,
});

const config = {
    name: 'cloudcmd :)',
};

const filePicker = {
    data: {
        FilePicker: {
            key: 'key',
        },
    },
};

// override option from json/modules.json
const modules = {
    filePicker,
};

const {
    createConfigManager,
    configPath,
} = cloudcmd;

const configManager = createConfigManager({
    configPath,
});

app.use(prefix, cloudcmd({
    socket, // used by Config, Edit (optional) and Console (required)
    config, // config data (optional)
    modules, // optional
    configManager, // optional
}));

server.listen(port);

Docker

The docker images are provided for multiple architectures and types. The following list shows all existing images:

Architecture Type
amd64 linux
arm64 (arm/v8) linux
amd64 linux-alpine
arm64 (arm/v8) linux-alpine

Cloud Commander could be used as a docker container this way:

docker run -it --rm -v ~:/root -v /:/mnt/fs -w=/root -p 8000:8000 coderaiser/cloudcmd

Config would be read from home directory, hosts root file system would be mount to /mnt/fs, 8000 port would be exposed to hosts port.

Also you could use docker compose with docker-compose.yml:

version: '2'
services:
  web:
    ports:
      - 8000:8000
    volumes:
      - ~:/root
      - /:/mnt/fs
    image: coderaiser/cloudcmd

When you create this file run:

docker-compose up

Documentation

More documentation you can find on https://cloudcmd.io/.

Get involved

There is a lot ways to be involved in Cloud Commander development:

License

MIT