samba-client
TypeScript icon, indicating that this package has built-in type declarations

7.2.0 • Public • Published

node-samba-client

Node.js wrapper for smbclient

Requirements

Requires Node.js 10+ Smbclient must be installed. This can be installed on Ubuntu with sudo apt-get install smbclient.

API

const SambaClient = require('samba-client');

let client = new SambaClient({
  address: '//server/folder', // required
  username: 'test', // not required, defaults to guest
  password: 'test', // not required
  domain: 'WORKGROUP', // not required
  maxProtocol: 'SMB3', // not required
  maskCmd: true, // not required, defaults to false
});

// send a file
await client.sendFile('somePath/file', 'destinationFolder/name');

// get a file
await client.getFile('someRemotePath/file', 'destinationFolder/name');

// create a folder
await client.mkdir('folder/tree', (optional) 'current/working/directory');
// By default CWD is __dirname

// executes dir command in remote directory
await client.dir('remote/folder', (optional) 'current/working/directory');
// By default CWD is __dirname

// validate if file or folder exists in the remote device
await client.fileExists('remote/file', (optional) 'current/working/directory');
// By default CWD is __dirname

Troubleshooting

Error: spawn ENOTDIR in Electron

Pass an empty string in the Current Working Directory parameter, for more information see this PR.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 7.2.0
    2,692
    • latest

Version History

Package Sidebar

Install

npm i samba-client

Weekly Downloads

3,882

Version

7.2.0

License

MIT

Unpacked Size

11.5 kB

Total Files

9

Last publish

Collaborators

  • eflex
  • jakesjews
  • rrglomsk
  • nevans54