No description
Find a file
2016-03-01 11:12:51 -05:00
bin fix(cloudcmd) createPass: algo, pass -> pass, algo 2016-02-10 05:50:29 -05:00
css feature(package) add stylelint 2016-03-01 11:12:51 -05: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 chore(package) v5.1.0 2016-02-20 17:01:52 -05:00
json feature(bower) menu v1.0.1 2016-02-05 14:15:53 -05:00
lib fix(view) showImage: prefix 2016-02-26 16:00:14 -05:00
man feature(cloudcmd) add --html-dialogs 2015-09-28 11:43:03 -04:00
modules feature(bower) menu v1.0.1 2016-02-05 14:15:53 -05:00
shell feature(ssl) change mode 2014-12-04 10:51:11 -05:00
test/lib feature(package) mocha -> tape 2016-02-22 06:01:31 -05:00
tmpl feature(package) mocha -> tape 2016-02-22 06:01:31 -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) exclude hbs from insert_final_newline 2016-02-20 15:44:09 -05:00
.gitignore feature(package) mocha -> tape 2016-02-22 06:01:31 -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
.stylelintrc feature(package) add stylelint 2016-03-01 11:12:51 -05:00
.travis.yml fix(travis) npm codestyle -> npm run codestyle 2016-02-22 06:03:50 -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.1.5 2016-02-26 16:04:07 -05:00
ChangeLog chore(package) v5.1.5 2016-02-26 16:04:07 -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 docs(help) Benefits: add link to console 2016-02-29 13:23:22 +02: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) add stylelint 2016-03-01 11:12:51 -05:00
README.md chore(package) v5.1.5 2016-02-26 16:04:07 -05:00

Cloud Commander v5.1.5 License NPM version Dependency Status Build Status Circle Ci Package Quality Gitter

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,
    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);

License

MIT