No description
Find a file
2016-10-24 21:25:34 +03:00
.github docs(issue) linux -> Linux 2016-06-09 19:47:01 +03:00
bin refactor(release) "function" -> "=>" 2016-07-28 17:35:22 +03:00
css feature(package) stylelint-config-standard v13.0.0 2016-08-30 11:29:52 +03:00
font feature(cloudcmd) add logOut 2015-06-12 03:50:09 -04:00
html fix(index) prefix: favicon 2016-02-25 07:33:34 -05:00
img feature(img) add v5.5.0 2016-06-16 12:15:58 +03:00
json feature(modules) jquery.fancybox.js -> jquery.fancybox.pack.js 2016-10-20 15:37:55 +03:00
legacy feature(package) add eslint 2016-07-28 18:30:38 +03:00
lib feature(package) edward v4.0.0 2016-10-24 18:01:17 +03:00
man feature(cloudcmd) add one-panel-mode 2016-06-15 22:57:39 +03:00
modules feature(gitignore) rm unused 2016-10-20 15:54:01 +03:00
shell chore(ssl) rm " " 2016-06-14 17:56:26 +03:00
test/lib feature(package) mocha -> tape 2016-02-22 06:01:31 -05:00
tmpl feature(cloudcmd) add deepword 2016-10-18 14:06:23 +03:00
.bowerrc feature(bower) add modules 2015-01-05 15:17:28 -05:00
.dockerignore feature(docker) add 2015-12-09 09:39:19 -05:00
.editorconfig feature(editorconfig) exclude hbs from insert_final_newline 2016-02-20 15:44:09 -05:00
.eslintrc feature(package) add eslint 2016-07-28 18:30:38 +03:00
.gitignore feature(gitignore) rm unused 2016-10-20 15:54:01 +03:00
.jscsrc feature(jscs) requireMultipleVarDecl: false 2016-05-12 17:26:12 +03:00
.jshintrc feature(jshintrc) add legacy 2016-07-28 17:32:55 +03:00
.npmignore feature(jshintrc) add legacy 2016-07-28 17:32:55 +03:00
.stylelintrc.yml feature(package) stylelint-config-standard v12.0.0 2016-08-08 16:51:27 +03:00
.travis.yml feature(travis) rm security 2016-06-27 17:39:52 +03:00
.yaspellerrc fix(yaspeller) Deepword: quotes 2016-10-19 16:05:58 +03:00
app.json chore(app) dos2nix 2016-03-28 16:07:35 -04:00
bower.json feature(bower) jquery v3.1.1 2016-10-20 15:33:57 +03:00
ChangeLog chore(package) v5.7.2 2016-10-24 12:54:55 +03:00
circle.yml chore(circle) 6 -> 6.1.0 2016-05-15 21:04:05 +03:00
CONTRIBUTING.md docs(contributing) rm Branch 2015-03-13 03:25:40 -04:00
docker-compose.yml feature(docker-compose) add 2016-03-09 07:58:18 -05:00
Dockerfile chore(dockerfile) rm ":" 2016-03-24 10:04:30 -04:00
Dockerfile.alpine chore(dockerfile) rm ":" 2016-03-24 10:04:30 -04:00
favicon.ico feature(favicon) add 2014-03-02 07:05:40 -05:00
HELP.md chore(package) v5.7.2 2016-10-24 12:54:55 +03:00
LICENSE docs(license) 2016 2016-01-10 08:07:26 -05:00
manifest.yml chore(manifest) rm trailing spaces 2015-02-27 09:25:00 -05:00
package.json feature(package) stylelint-config-standard v14.0.0 2016-10-24 21:25:34 +03:00
README.md chore(package) v5.7.2 2016-10-24 12:54:55 +03:00

Cloud Commander v5.7.2 License NPM version Dependency Status Build Status Package Quality Codacy Gitter

Main Blog Live(Heroku)

Cloud Commander orthodox web file manager 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.

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:

var http        = require('http'),
    cloudcmd    = require('cloudcmd'),
    express     = require('express'),
    io          = require('socket.io'),
    app         = express(),
    
    PORT        = 1337,
    PREFIX      = '/cloudcmd',
    server,
    socket;
    
server = http.createServer(app);
socket = io.listen(server, {
    path: PREFIX + '/socket.io'
});

app.use(cloudcmd({
    socket: socket,     /* used by Config, Edit (optional) and Console (required)   */
    config: {           /* config data (optional)                                   */
        prefix: PREFIX, /* base URL or function which returns base URL (optional)   */
    }
}));

server.listen(PORT);

Docker

Cloud Commander could be used as docker container this way:

docker run -v ~:/root -v /:/mnt/fs -t -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

License

MIT