No description
Find a file
2026-03-28 22:42:38 +02:00
.github chore: actions: lint 2026-03-23 19:19:04 +02:00
.webpack feature: cloudcmd: add ability to show modification time (#230) 2026-03-20 17:54:58 +02:00
bin feature: cloudcmd: add ability to hide port configuration 2026-03-23 23:03:47 +02:00
client feature: cloudcmd: vim: ESC: use only to enable, do not use to disable 2026-03-28 22:40:46 +02:00
common fix: cloudcmd: no time available: --.--.---- -> --:--:-- (#461) 2026-03-23 15:46:00 +02:00
css fix: columns: name-size-date-time: 20% -> 19% 2026-03-26 13:16:40 +02:00
docker feature: docker: io: ffmpeg 2026-03-28 22:42:38 +02:00
font
html
img
json feature: cloudcmd: add ability to hide port configuration 2026-03-23 23:03:47 +02:00
man feature: cloudcmd: add ability to hide port configuration 2026-03-23 23:03:47 +02:00
public
rules feature: cloudcmd: migrate to ESM 2026-02-03 15:03:49 +02:00
server feature: server: user-menu: when error send it 2026-03-23 12:20:31 +02:00
static chore: lint 2026-03-17 20:43:43 +02:00
test fix: cloudcmd: no time available: --.--.---- -> --:--:-- (#461) 2026-03-23 15:46:00 +02:00
tmpl feature: cloudcmd: add ability to hide port configuration 2026-03-23 23:03:47 +02:00
.babelrc.json
.browserslistrc
.cloudcmd.menu.js feature: cloudcmd: migrate to ESM 2026-02-03 15:03:49 +02:00
.dockerignore
.editorconfig
.gitignore chore: cloudcmd: actions: lint ☘️ 2026-02-15 20:25:32 +00:00
.madrun.js chore: cloudcmd: actions: lint ☘️ 2026-03-17 18:45:13 +00:00
.npmignore chore: cloudcmd: actions: lint ☘️ 2026-02-15 20:25:32 +00:00
.nvmrc
.nycrc.json chore: lint 2026-02-18 14:15:22 +02:00
.putout.json feature: common: object.omit -> omit 2026-02-21 17:33:20 +02:00
.typos.toml feature: client: dom: load-remote: migrate to ESM 2026-01-29 18:46:43 +02:00
.yaspellerrc
app.json
ChangeLog chore: cloudcmd: v19.9.7 2026-03-27 19:46:11 +02:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
deno.json
docker-compose.yml
eslint.config.js chore: lint 2026-02-03 15:53:21 +02:00
favicon.ico
HELP.md chore: cloudcmd: v19.9.7 2026-03-27 19:46:11 +02:00
LICENSE
manifest.yml
package.json chore: cloudcmd: v19.9.7 2026-03-27 19:46:11 +02:00
README.md chore: cloudcmd: v19.9.7 2026-03-27 19:46:11 +02:00
robots.txt
webpack.config.js feature: cloudcmd: migrate to ESM 2026-02-03 15:03:49 +02:00

Cloud Commander v19.9.7 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