yannickcr / node-synology

A simple wrapper for the Synology NAS API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node Synology

NPM version Dependency Status

A simple wrapper for the Synology NAS API.

Installation

$ npm install synology

Usage

var Synology = require('synology');

var syno = new Synology({
	host    : 'localhost',
	user    : 'mylogin',
	password: 'mypassword'
});

syno.fileStation.upload({
  file: fs.createReadStream(path.join(__dirname, 'foo.txt')),
  dest_folder_path: '/home'
}, function(err, data) {
  if (err) throw err;
  console.log(data);
});

API documentation can be found on the Wiki

It's a pretty big (non-documented) API and I need to reverse every methods and guess the parameters, document it then do a usable wrapper. Not very difficult for the majority of the methods but really time consuming. Help is welcome ;)

For now you can still use directly the Synology.query method to do a raw query but it is not very user friendly.

TODO

  • Documentation (In progress)
  • Helpers (In progress)
  • Tests

License

Node Synology is licensed under the MIT License.

About

A simple wrapper for the Synology NAS API

License:MIT License


Languages

Language:JavaScript 100.0%