npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

metaimages

v0.0.2

Published

Create correctly sized images for use in social media meta tags.

Downloads

5

Readme

metaimages.js Build Status Coverage Status

Create correctly sized images for use in social media meta tags.

To add social media meta tags, such as Facebook's Open Graph meta tags, you have to create multiple images of varying sizes. This module can do some of the work for you by taking a single large image and rendering all the necessary images.

Installation

npm install metaimages

Basic Example

var metaimages = require('metaimages');

var metaImg = metaimages();
metaImg.create(
	"your/image/to/convert.png",
	"output/directory/for/images", 
	function(err, files){
		if(!err){
			// do something
		}
	}
);

Advanced Example

var metaimages = require('metaimages');

var metaImg = metaimages({
	format: "png",
	gravity: "center",
	images: {
		twitter: {
			'maxBytes': 5242880
		},
		facebook_small: {
			"prefix": "facebook_tiny_",
			'gravity': 'north'
		},
		facebook_large: {
			"prefix": "facebook_huge_",
			'height': 800,
			'width': 1500
		},
		gplus: false,
		otherSocialMediaSite: {
			"prefix": "something_",
			'height': 620, 
			'width': 300
		}
	}
});
metaImg.create(
	"your/image/to/convert.png",
	"output/directory/for/images", 
	function(err, files){
		if(!err){
			// do something
		}
	}
);

Options

options.format

  • Type: String
  • Default: "jpg"
  • Description: Sets the image type to output. Supporst any image format supported by imagemagick

options.gravity

  • Type: String
  • Default: "center"
  • Description: Determines the part of the image that will be removed during cropping. For example, "center" will try to keep the centermost part of the image and only remove the furthest edges.

options.images

  • Type: object
  • Description: Set a property for each image you want to create. There are 4 default images with customizable properties and can also be removed by setting them to false:
    • twitter
    • facebook_small
    • facebook_large
    • gplus
  • Default:
{
	twitter: {
		"prefix": "twitter_",
		'height': 250,
		'width': 250,
		'maxBytes': 1048576 // 1MB
	},
	facebook_small: {
		"prefix": "facebook_small_",
		'height': 315,
		'width': 600,
		'maxBytes': 5242880 // 5MB
	},
	facebook_large: {
		"prefix": "facebook_large_",
		'height': 630,
		'width': 1200,
		'maxBytes': 5242880 // 5MB
	},
	gplus: {
		"prefix": "gplus_",
		'height': 800, // Google doesn't specify dimensions, so it will be 800 until someone yells at me.
		'width': 800
	}
}

create( sourceImage, outputDirectory, callback( error, filesArray ) )

sourceImage - REQUIRED PARAMETER

  • Type: String
  • Description: Sets the source image to be used to render the social media images.

outputDirectory - REQUIRED PARAMETER

  • Type: String
  • Description: Sets the directory to where the rendered social media images will be saved.

callback( error, filesArray )

  • Type: function
  • Description: function that is called once image creation is complete.
  • Parameters:
    • error - An error object
    • filesArray - An array of the file paths of created images