Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
OroSftp Class is a wrapper of ssh2-sftp-client to work as promises async/await and typescript.
OSftp Class is a wrapper of ssh2-sftp-client to simplify their use.
ssh2-sftp-client is a SFTP client module for node.js that provides an asynchronous interface for communicating with a SFTP server.
To have the same interface using FTP, you can utilize the OroFtp class available through OroFtp
npm install oro-sftp
Example:
// cjs
const { OSftp } = require( 'oro-sftp' );
// mjs, ts
import OSFtp from 'oro-sftp';
const sftpClient = new OSftp( {
host: 'custom-server.com',
port: 22,
user: 'custom-user',
password: 'custom-password'
} );
const sftpUpload = await sftpClient.uploadOne( `./folder-from/filename`, 'folder-to/filename' );
console.log( sftpUpload );
// -> { status: true, ... }
When an error happens, instead to throw an error, it's returned a managed responseKO.
responseKO is an object with 3 fields:
interface responseKO {
status: false;
error: {
msg: string; // explaining the error
code: OSFtpErrorCode; // string
// ... // other data, it depends on method error
},
tryAgain: boolean;
}
type OSFtpErrorCode =
| 'ECONNREFUSED'
| 'UNCONNECTED'
| 'ENOTFOUND'
| 'ENTIMEOUT'
| 'ENOENT'
| 'EEXIST'
| 'ENOTEMPTY';
new OSFtp( config?: OSFtpConfig );
type OSFtpConfig = SftpClient.ConnectOptions & {
host?: string;
port?: number;
user?: string;
password?: string;
readyTimeout?: number; // def: 3000
disconnectWhenError?: boolean; // def: true
}
As parameters, you can pass the server config data (or you can also do it in .connect()
).
In addition, config
has param disconnectWhenError
(default true
), so when an error happens, connection closes automatically.
const OSftp = require( 'oro-sftp' );
const config = {
host: 'custom-server.com',
port: 22,
user: 'custom-user',
password: 'custom-password',
readyTimeout: 3000,
disconnectWhenError: true
}
const sftpClient = new OSftp( config );
sftpClient.getClient(): SftpClient;
If you want to use the library ssh2-sftp-client
, you can get the object.
const sftpClient = new OSftp( config );
const ssh2SftpClient = await sftpClient.getClient();
await sftpClient.connect( config?: OSFtpConfig ) => Promise<OSFtpConnectResponse>;
type OSFtpConfig = PromiseFtp.Options & {
host?: string;
port?: number;
user?: string;
password?: string;
readyTimeout?: number; // def: 3000
disconnectWhenError?: boolean; // def: true
}
export type OSFtpConnectResponse =
| SResponseOKBasic
| SResponseKOObjectAgain<OSFtpConnectError>;
interface SResponseOKBasic {
status: true;
}
interface SResponseKOObjectAgain {
status: false;
error: {
msg: string;
code: OSFtpErrorCode;
config: OSFtpConfig;
}
}
interface OSFtpConnectError {
msg: string;
code: OSFtpErrorCode;
config: OSFtpConfig;
}
When you create a connection, it's expected that you will disconnect it later.
This method return a response, which is an object with status: true | false
.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
console.log( connected );
// -> { status: true }
await sftpClient.disconnect() => Promise<OSFtpDisconnectResponse>;
export type OSFtpDisconnectResponse =
| SResponseOKBasic
| SResponseKOBasic;
interface SResponseOKBasic {
status: true;
}
interface SResponseKOBasic {
status: false;
}
Note: If you don't .disconnect()
when finished, the script still running.
Note2: There is a param in config disconnectWhenError
by default true
.
This means that if a method (like upload
or move
) return status: false
, the ftpClient will be disconnected automatically.
This method return a response, which is an object with status: true | false
.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
// ...
const disconnected = await sftpClient.disconnect();
console.log( disconnected );
// -> { status: true }
await sftpClient.upload( filepathFrom: string, filepathTo?: string )
=> Promise<OSFtpFileResponse>;
export type OSFtpFileResponse =
| SResponseOKObject<OSFtpFileObject>
| SResponseKOObject<OSFtpFileError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFileObject {
filename: string;
filepath: string;
}
interface OSFtpFileError {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
upload
is the action to copy from local to ftp folder.
If filepathTo
is not declared, it takes the filename of filepathFrom
and save it on ftp main folder.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const uploaded = await sftpClient.upload( './files/custom-file.pdf' );
console.log( uploaded );
// -> { status: true, filename: 'custom-file.pdf', ... }
sftpClient.disconnect();
await sftpClient.upload( filepathFrom: string, filepathTo?: string )
=> Promise<OSFtpUploadOneResponse>;
export type OSFtpUploadOneResponse =
| SResponseOKObject<OSFtpFileObject>
| SResponseKOObject<OSFtpFileError | OSFtpConnectError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
}
type SResponseKOObject =
| {
status: false;
error: {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
}
| {
status: false;
error: {
msg: string;
code: OSFtpErrorCode;
config: OSFtpConfig;
}
}
interface OSFtpFileObject {
filename: string;
filepath: string;
}
interface OSFtpFileError {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
interface OSFtpConnectError {
msg: string;
code: OSFtpErrorCode;
config: OSFtpConfig;
}
If you want to upload just one file, you can use this method and inside:
const sftpClient = new OSftp( config );
const uploaded = await sftpClient.uploadOne( './files/custom-file.pdf' );
console.log( uploaded );
// -> { status: true, filename: 'custom-file.pdf', ... }
await sftpClient.download( filepathFrom: string, filepathTo?: string )
=> Promise<OSFtpFileResponse>;
export type OSFtpFileResponse =
| SResponseOKObject<OSFtpFileObject>
| SResponseKOObject<OSFtpFileError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFileObject {
filename: string;
filepath: string;
}
interface OSFtpFileError {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
download
is the action to copy from ftp folder to local.
If filepathTo
is not declared, it takes the filename of filepathFrom
and save it on local main folder.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const downloaded = await sftpClient.download( 'custom-file.pdf' );
console.log( downloaded );
// -> { status: true, filename: 'custom-file.pdf', ... }
sftpClient.disconnect();
await sftpClient.list( folder?: string, filters?: OSFtpListFilters )
=> Promise<OSFtpListResponse>;
interface OSFtpListFilters {
onlyFiles?: boolean | undefined; // def: false
onlyFolders?: boolean | undefined; // def: false
pattern?: ListFilterFunction | undefined;
}
type ListFilterFunction = (fileInfo: FileInfo) => boolean;
export type OSFtpListResponse =
| SResponseOKObject<OSFtpListObject>
| SResponseKOObject<OSFtpListError>;
interface SResponseOKObject {
status: true;
count: number; // list.length
list: OSFtpListFile[];
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
folder: string;
filters: OSFtpListFilters;
code?: OSFtpErrorCode;
}
}
export interface OSFtpListFile {
path: string;
name: string;
type: OSFtpListFileType;
date: Date;
size: number;
owner: string;
group: string;
target: string | undefined;
rights: {
user: string;
group: string;
other: string;
}
}
type OSFtpListFileType = '-' | 'd' | 'l';
// 'file' | 'folder' | 'symlink'
export interface OSFtpListObject {
count: number; // list.length
list: OSFtpListFile[];
}
export interface OSFtpListError {
msg: string;
folder: string;
filters: OSFtpListFilters;
code?: OSFtpErrorCode;
}
list
is the action to take a look at what is in ftp folder.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const files = await sftpClient.list();
console.log( files );
// -> { status: true, count: 7, list: [ ... ] }
sftpClient.disconnect();
pattern
pattern
filter can be a regular expression (most powerful option) or
a simple glob-like string where *
will match any number of characters, e.g.
foo* => foo, foobar, foobaz
*bar => bar, foobar, tabbar
*oo* => foo, foobar, look, book
response example
{
status: true,
count: // list.length
list: [
{
type: // file type(-, d, l)
name: // file name
longname: // file name as linux promp
path: // file path
date: // file date of modified time
modifyDate: // file date of modified time
accessDate: // file date of access time
size: // file size
rights: { user: 'rwx', group: 'rwx', other: 'rwx' }
owner: // user number ID
group: // group number ID
},
...
]
}
await sftpClient.move( filepathFrom: string, filepathTo?: string )
=> Promise<OSFtpFileResponse>;
export type OSFtpFileResponse =
| SResponseOKObject<OSFtpFileObject>
| SResponseKOObject<OSFtpFileError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFileObject {
filename: string;
filepath: string;
}
interface OSFtpFileError {
msg: string;
filepathFrom: string;
filepathTo?: string;
code?: OSFtpErrorCode;
}
move
is the action to move from ftp folder to ftp folder (or event rename).
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const moved = await sftpClient.move( 'custom-file.pdf', 'backup/custom-file.pdf' );
console.log( moved );
// -> { status: true, filename: 'custom-file.pdf', ... }
sftpClient.disconnect();
await sftpClient.delete( filepathFrom: string, strict?: boolean )
=> Promise<OSFtpFileResponse>;
export type OSFtpFileResponse =
| SResponseOKObject<OSFtpFileObject>
| SResponseKOObject<OSFtpFileError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFileObject {
filename: string;
filepath: string;
}
interface OSFtpFileError {
msg: string;
filepathFrom: string;
code?: OSFtpErrorCode;
}
delete
is the action to remove a file from ftp folder.
When strict = false
and not found the file, it returns { status: true }
.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const deleted = await sftpClient.delete( 'custom-file.pdf' );
console.log( deleted );
// -> { status: true, filename: 'custom-file.pdf', ... }
sftpClient.disconnect();
await sftpClient.exists( filepathFrom: string, disconnectWhenError?: boolean )
=> Promise<OSFtpExistResponse>;
export type OSFtpExistResponse =
| SResponseOKObject<OSFtpExistObject>
| SResponseKOObject<OSFtpExistError>;
interface SResponseOKObject {
status: true;
filename: string;
filepath: string;
type: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filename: string;
filepath: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpExistObject {
filename: string;
filepath: string;
type: string;
}
interface OSFtpExistError {
msg: string;
filename: string;
filepath: string;
code?: OSFtpErrorCode;
}
exists
is the action to check if a file or folder exists in ftp folder.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const exists = await sftpClient.exists( 'custom-file.pdf' );
console.log( exists );
// -> { status: true, filename: 'custom-file.pdf', type: 'd' ... }
sftpClient.disconnect();
await sftpClient.mkdir( folder, recursive?: boolean, strict?: boolean )
=> Promise<OSFtpFolderResponse>;
export type OSFtpFolderResponse =
| SResponseOKObject<OSFtpFolderObject>
| SResponseKOObject<OSFtpFolderError>;
interface SResponseOKObject {
status: true;
foldername: string;
folderpath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFolderObject {
foldername: string;
folderpath: string;
}
interface OSFtpFolderError {
msg: string;
folder: string;
code?: OSFtpErrorCode;
}
mkdir
is the action to create folders in ftp folder.
When recursive = true
it allows to create the subfolders too.
When strict = false
and folder already exist, it returns { status: true }
.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const created = await sftpClient.mkdir( 'custom-folder/custom-subfolder' );
console.log( created );
// -> { status: true, foldername: 'custom-subfolder', ... }
sftpClient.disconnect();
await sftpClient.rmdir( folder, recursive?: boolean, strict?: boolean )
=> Promise<OSFtpFolderResponse>;
export type OSFtpFolderResponse =
| SResponseOKObject<OSFtpFolderObject>
| SResponseKOObject<OSFtpFolderError>;
interface SResponseOKObject {
status: true;
foldername: string;
folderpath: string;
}
interface SResponseKOObject {
status: false;
error: {
msg: string;
filepathFrom: string;
code?: OSFtpErrorCode;
}
}
interface OSFtpFolderObject {
foldername: string;
folderpath: string;
}
interface OSFtpFolderError {
msg: string;
folder: string;
code?: OSFtpErrorCode;
}
rmdir
is the action to remove folders in ftp folder.
When recursive = true
it allows to remove the folder-content too.
When strict = false
and not found the folder, it returns { status: true }
.
const sftpClient = new OSftp( config );
const connected = await sftpClient.connect();
if( ! connected.status ) { return connected; }
const removed = await sftpClient.rmdir( 'custom-folder', true );
console.log( removed );
// -> { status: true, foldername: 'custom-folder', ... }
sftpClient.disconnect();
If you want to run npm run test
, it's required to declare your own ./test/config.json
(you can copypaste it from ./test/config-default.json
)
{
"host": "IPADDRESS",
"port": 22,
"user": "user",
"password": "password"
}
NOTICE: When tests are running, in the server ftp it's created (and removed when it has finished) the next folders:
test-exists
,test-mkdir
,test-rmdir
,test-list
,test-delete
,test-move
,test-upload
,test-download
;test-exists-ts
,test-mkdir-ts
,test-rmdir-ts
,test-list-ts
,test-delete-ts
,test-move-ts
,test-upload-ts
,test-download-ts
;
and the files ./zpython.pdf
, ./zpython2.pdf
.So,
rw
permissions should be allowed,run test
.2.0.2 / 2023-11-02
npm_publish_on_pr_merge_to_master
.fs-extra
to v11.1.1
.oro-functions
from v2.0.0
to v2.0.2
.@babel/core
from v7.23.2
to v7.23.3
.@babel/preset-env
from v7.23.2
to v7.23.3
.@babel/preset-typescript
from v7.23.2
to v7.23.3
.@types/fs-extra
from v11.0.3
to v11.0.4
.@types/jest
from v29.5.7
to v29.5.10
.@types/ssh2-sftp-client
from v9.0.2
to v9.0.3
.@typescript-eslint/eslint-plugin
from v6.9.1
to v6.12.0
.@typescript-eslint/parser
from v6.9.1
to v6.12.0
.eslint
from v8.52.0
to v8.54.0
.prettier
from v3.0.3
to v3.1.0
.tsup
from v7.2.0
to v8.0.1
.@nearst/ftp
.FAQs
OroSftp Class is a wrapper of ssh2-sftp-client to work as promises async/await and typescript.
The npm package oro-sftp receives a total of 0 weekly downloads. As such, oro-sftp popularity was classified as not popular.
We found that oro-sftp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.