0.9.1 • Published 9 years ago

impurge v0.9.1

Weekly downloads
12
License
BSD
Repository
github
Last release
9 years ago

#impurge Build Status

This is a simple module meant to extract image URLS from imgur pages in a standard format despite differences in URL format.

Example:

var impurge = require('impurge');
  impurge.purge("http://imgur.com/IvpcP", function  (e,r) {
  console.log(r)
});

will result in:

http://i.imgur.com/IvpcP.jpg

or for multiple images

var impurge = require('impurge');
  impurge.purge("http://imgur.com/a/QgHRA", function  (e,r) {
  console.log(r)
});

will result in:

[ 'http://i.imgur.com/OzAiFJ5.jpg',
  'http://i.imgur.com/AS76Rhx.jpg',
  'http://i.imgur.com/gx436Y2.jpg' ]

It currently supports:

The test file included will check the currency of the regular expressions against live reddit data to ensure imgur is not changing link formats and will look for any it does not recognize.

A few additional methods that are used for testing the accuracy of the regex's:

impurge.is_imgur(url); //will output true if the url is imgur

The following takes a string input and will return an array of imgur links contained within a text input:

impurge.get_text_imgur_links(text); // will return an array of links

The following is a function to determine the link type (previously used internally)

impurge.determine_link_type(url, function(err, type, id, i_url){
	//err is given if link is not recognized
	//type is image_url, album_url, gallery_url, hash_url
	//id is the id for the link (if applicable)
	//i_url is the image url if this is a direct image
});
0.9.1

9 years ago

0.9.0

9 years ago

0.0.9

9 years ago

0.0.82

10 years ago

0.0.81

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.62

10 years ago

0.0.61

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.42

11 years ago

0.0.41

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago