Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

iconoclasm

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iconoclasm

  • 1.0.9
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

iconoclasm

Finds favorites icons for web pages on the world wide internets by checking the HTML head or the standard favicon location. Then, do with them what you will.

Called "iconoclasm" because there was already a gem on gemcutter called "iconoclast". Boo! Hiss!

Usage

To get the favicon for a page, do:

favicon = Iconoclasm.extract('www.website.com')

This will go and do a bunch of GETs (two or three, actually) on the url given. If you've already got the content and want to skip one of the GETs, you can pass the content in as the second argument.

content = get_some_content('www.website.com')
favicon = Iconoclasm.extract('www.website.com', content)

Iconoclasm.extract returns an Iconoclasm::Favicon instance, from which you can get the URL, content type, size, or access the binary image data. By calling valid?, you can check if the favicon is valid based on whatever my standards were when I wrote this (basically, whether or not it's actually an image).

You can save the image to a tempfile using favicon.save, or more usefully, to a file at favicon.save('path/to/file'). Fun times had by all.

Copyright (c) 2009 Sander Hartlage. See LICENSE for details.

FAQs

Package last updated on 30 Jun 2010

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc