No description
Find a file
2015-12-14 07:17:21 -05:00
bin feature(package) gulp -> npm scripts 2015-12-10 10:33:40 -05:00
css fix(style) .current-file box-shadow: 0.8 -> 1.5 2015-09-03 09:47:20 -04:00
font feature(cloudcmd) add logOut 2015-06-12 03:50:09 -04:00
html feature(index) New directory -> New Directory 2015-09-15 07:25:52 -04:00
img feature(cloudcmd) add --html-dialogs 2015-09-28 11:43:03 -04:00
json feature(config) set htmlDialogs true by default 2015-11-15 05:41:56 -05:00
lib feature(package) gulp -> npm scripts 2015-12-10 10:33:40 -05:00
man feature(cloudcmd) add --html-dialogs 2015-09-28 11:43:03 -04:00
modules feature(bower) smalltalk v1.6.4 2015-12-09 15:03:49 -05:00
shell feature(ssl) change mode 2014-12-04 10:51:11 -05:00
test/lib feature(package) gulp -> npm scripts 2015-12-10 10:33:40 -05:00
tmpl feature(cloudcmd) add --html-dialogs 2015-09-28 11:43:03 -04: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) add 2014-04-22 03:45:05 -04:00
.gitignore feature(gitignore) npm-debug.log -> npm-debug.log* 2015-11-15 05:56:28 -05:00
.jscsrc feature(package) gulp-jscs v2.0.0 2015-09-16 03:32:10 -04:00
.jshintrc chore(jshintrc) add " " 2015-04-10 08:30:38 -04:00
.npmignore feature(docker) add 2015-12-09 09:39:19 -05:00
.travis.yml feature(package) gulp -> npm scripts 2015-12-10 10:33:40 -05:00
.yaspellerrc feature(yaspeller) dictionary: add dword, edward 2015-04-17 09:48:16 -04:00
app.json docs(readme) add "deploy to heroku" button 2015-07-14 10:54:54 -04:00
bower.json feature(package) gulp -> npm scripts 2015-12-10 10:33:40 -05:00
ChangeLog chore(package) v5.0.3 2015-12-08 15:09:40 -05:00
CONTRIBUTING.md docs(contributing) rm Branch 2015-03-13 03:25:40 -04:00
Dockerfile feature(docker) add 2015-12-09 09:39:19 -05:00
favicon.ico feature(favicon) add 2014-03-02 07:05:40 -05:00
gulpfile.js feature(gulpfile) rm storage 2015-12-10 02:29:27 -05:00
HELP.md docs(help) bined -> mount 2015-12-09 15:09:40 -05:00
LICENSE docs(license) 2015 2015-01-02 07:03:18 -05:00
manifest.yml chore(manifest) rm trailing spaces 2015-02-27 09:25:00 -05:00
package.json feature(package) rm nupdate 2015-12-14 03:36:40 -05:00
README.md docs(README) rm "\n" 2015-12-14 07:17:21 -05:00

Cloud Commander v5.0.3 License NPM version Dependency Status Build Status Shippable Status Circle Ci Package Quality

Main Blog Live(JitSu, 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

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,
    
    server,
    socket;
    
server = http.createServer(app);
socket = io.listen(server);

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

server.listen(PORT);

License

MIT