mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
3.3 KiB
3.3 KiB
Cloud Commander v5.1.2

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

