Following is my code
`var EasyFtp = require('easy-ftp')
var ftp = new EasyFtp()
var config = {
host:'XXX',
port: 21,
username: 'XXX',
password: 'XXX',
type: 'ftp'
}
ftp.connect(config);`
I only do connection.
But in my FTP server, it keep receiveing pwd command every 10 seconds.
As you can see in the following picture.

Is there any problem in my code ?
Following is my code
`var EasyFtp = require('easy-ftp')
var ftp = new EasyFtp()
var config = {
host:'XXX',
port: 21,
username: 'XXX',
password: 'XXX',
type: 'ftp'
}
ftp.connect(config);`
I only do connection.
But in my FTP server, it keep receiveing pwd command every 10 seconds.
As you can see in the following picture.
Is there any problem in my code ?