Cloud Commander orthodox web file manager with console and editor.
npm i cloudcmd -g
For starting just type in console:
cloudcmdOpen url http://localhost:8000 in browser.
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);MIT

