1.0.2 • Published 9 years ago

node-deviantart v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

deviantART API wrapper in Node.js

Work in progress.

Install

npm install node-deviantart

Example

var deviantart = require('deviantart'),
client = new deviantart.RSSClient;

client.submissions({username: 'emilkje', type: 'image'}, function(err, data){
	if(err) throw err;
	console.dir(data);
});

Testing

make test

TODO:

  • Improve RSSClient to handle single submissions (data streams etc.)
  • Add sta.sh client for uploads and asset management
  • Mock HTTP-requests in test cases (currently throws timesout on large requests)
  • Move options from submission() to query()
  • More documentation
  • More
1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.1

9 years ago