You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diigonode

A wrapper for the Diigo bookmarking service API

0.0.2
latest
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created

#diigonode

A wrapper for the Diigo bookmarking service API

##Usage

Mimics the API spec seen here https://www.diigo.com/api_dev

##Install

npm install diigonode

##Example: getting some links

var diigo = require('diigonode');

var auth = {
	password: '',
	username: ''
}

var getOptions = {
	key: '',
	username: 'username',
	password: 'password', 
	start: '', 
	count: '1', 
	sort: '', 
	tags: 'javascript',
	filter: '',
	list: ''
};

diigo.getDiigo(getOptions, auth, function(err, results) {
	//do stuff with results
});

##Example: saving a link

var diigo = require('diigonode');

var auth = {
	password: '',
	username: ''
}

var saveOptions = {
	key: '',
	title: 'Test Bookmark', 
	url: 'http://www.test.com/', 
	shared: 'no', 
	desc: 'Test description for test bookmark',
	readLater: 'yes'
};

diigo.saveDiigo(saveOptions, auth, function(err, results) {
	//do stuff with results
});

FAQs

Package last updated on 21 Jul 2013

Did you know?

Socket

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.

Install

Related posts