Cloud Commander V5.1.2

Last version we’ve talk about was v3. Todays most acutal version is v5.1.2 and what is happen with Cloud Commander during 2 major releases and a lot minors and patches is a main topic of todays talk.

Logout

That is right. Context menu has logout item that will clear http-auth headers when you will click it starting from v3.2.0

Middleware

Cloud Commander could be used as express middleware, feel free to experiment :).

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,
    config: {
        prefix: PREFIX,
    }
}));

server.listen(PORT);

File packing

You can pack couple files starting from v3.7.0. Nice feature to have.

Directories

You can download folders as archives starting from v3.8.0. And upload directories via drag’n’drop from v4.1.0.

HTML Dialogs

v4.6.0 bring ability to use html dialogs with help of smalltalk

Smalltalk

Date of modification

In v5.1.0 date columnt appered with help of readify and shortdate help.

Date

That’s all folks

That is all for today folks. Subscribe to twitter follow on github and have a lot fun :).