mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
No description
androidcloudcmdcommanderconsoledockereditorfile-managerfilesystemfolderframeworkhacktoberfestlinuxmacosmitnodejswindows
| bin | ||
| css | ||
| font | ||
| html | ||
| img | ||
| json | ||
| lib | ||
| man | ||
| modules | ||
| shell | ||
| test/lib | ||
| tmpl | ||
| .bowerrc | ||
| .dockerignore | ||
| .editorconfig | ||
| .gitignore | ||
| .jscsrc | ||
| .jshintrc | ||
| .npmignore | ||
| .travis.yml | ||
| .yaspellerrc | ||
| app.json | ||
| bower.json | ||
| ChangeLog | ||
| CONTRIBUTING.md | ||
| Dockerfile | ||
| favicon.ico | ||
| HELP.md | ||
| LICENSE | ||
| manifest.yml | ||
| package.json | ||
| README.md | ||
Cloud Commander v5.0.9

Main Blog Live(JitSu, Heroku)
Cloud Commander orthodox web file manager with console and editor.
Install
npm i cloudcmd -g
Start
For starting just type in console:
cloudcmd
How to use?
Open url http://localhost:8000 in browser.
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

