Skip to content

Instantly share code, notes, and snippets.

@newvertex
Created December 6, 2016 20:40
Show Gist options
  • Save newvertex/c73ed69af68e1c2fbc6b7caf8ba089bb to your computer and use it in GitHub Desktop.
Save newvertex/c73ed69af68e1c2fbc6b7caf8ba089bb to your computer and use it in GitHub Desktop.
A simple image uploader module to upload from url to imgur
let imgur = require('imgur');
imgur.setAPIUrl('https://api.imgur.com/3/');
function uploadIt(file) {
return imgur.uploadUrl(file);
}
module.exports.uploadIt = uploadIt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment