From e054fcd83d6b070a7451c620eb14b4b6cfc1422b Mon Sep 17 00:00:00 2001 From: Manuel Guilbault Date: Tue, 3 Jan 2023 12:18:49 +0100 Subject: [PATCH] Add bareCredentials option to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 68493c7..0158bc6 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ var ftps = new FTPS({ host: 'domain.com', // required username: 'Test', // Optional. Use empty username for anonymous access. password: 'Test', // Required if username is not empty, except when requiresPassword: false + bareCredentials: 'Test,Test$T', // Used instead of username/password for special cases where passwords should not be escaped protocol: 'sftp', // Optional, values : 'ftp', 'sftp', 'ftps', ... default: 'ftp' // protocol is added on beginning of host, ex : sftp://domain.com in this case port: 22, // Optional