9 лет спустя все намного проще.
Вот автономный пример node.js, который показывает, как на стороне сервера можно легко реализовать тезисы в javascript.
npm install
node index.js
index.js
// Test getting CSV Data from Deutscher Wetterdienst
const ftp = require('ftp')
var Client = require('ftp');
var c = new Client();
c.on('ready', function() {
c.list('/pub/CDC/derived_germany/soil/daily/recent/',function(err, list) {
if (err) throw err;
console.dir(list);
c.end();
});
});
// connect to localhost:21 as anonymous
c.connect({host:'ftp-cdc.dwd.de'});
package.json
{
"name": "ftp-test",
"version": "1.0.0",
"description": "ftp Test application",
"main": "index.js",
"dependencies": {
"ftp": "^0.3.10"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Wolfgang Fahl",
"license": "ISC"
}