Skip to content

Issue with Vercel, works perfectly on local #286

@smotlythomas

Description

@smotlythomas

I try this with two differents FTP server :

`var Client = require('ftp');

var c = new Client();
c.on('ready', function() {
c.list(function(err, list) {
if (err) throw err;
console.dir(list);
c.end();
});
});
// connect to localhost:21 as anonymous
c.connect();`

It works perfectly locally, but not on Vercel. We never get into the "ready" method.

The environment variables have been checked and everything is fine.

Has anyone ever had this problem?

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions