node-deviantart
v1.0.2
Published
DeviantArt API wrapper for node.js
Downloads
9
Readme
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