No description
Find a file
2016-02-01 12:44:30 -05:00
bin chore(cloudcmd) add " " 2016-01-30 07:29:11 -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(modules) socket.io v1.4.5 2016-01-27 03:23:52 -05:00
lib feature(cloudcmd) prefix: remedy, spero, ishtar 2016-02-01 12:18:18 -05:00
man feature(cloudcmd) add --html-dialogs 2015-09-28 11:43:03 -04:00
modules feature(bower) promise-polyfill v3.1.0 2016-01-15 14:29:14 -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 fix(pathLink) prefix when js disabled 2016-01-20 14:16:32 -05: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 chore(package) v5.0.8 2016-02-01 12:28:10 -05:00
ChangeLog docs(changelog) rm fix: feature 2016-02-01 12:44:30 -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
HELP.md chore(package) v5.0.8 2016-02-01 12:28:10 -05: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 chore(package) v5.0.8 2016-02-01 12:28:10 -05:00
README.md chore(package) v5.0.8 2016-02-01 12:28:10 -05:00

Cloud Commander v5.0.8 License NPM version Dependency Status Build 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