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

rework-sass-images

v0.2.1

Published

Sass/Compass image size functions written in JavaScript as a Rework plugin

Downloads

2

Readme

rework-sass-images

Sass/Compass image size functions written in JavaScript as a Rework plugin. Uses Imagesize to read an image's size and replaces directives in CSS with that size. Inspired by rework-imagesize and Compass Image Dimension Helpers.

Usage

var rework = require('rework');
var sass_images = require('rework-sass-images');

var css = rework(str)
  .use(sass_images('path/to/images/folder'))
  .toString();

Using the above JavaScript. This:

h1 {
  background: url('myimage.png');
  background-size: image-size('myimage.png');
  width: image-width('myimage.png');
  height: image-height('myimage.png');
  text-indent: 100%;
}

Will produce this CSS:

h1 {
  background: url('myimage.png');
  background-size: 518px 202px;
  width: 518px;
  height: 202px;
  text-indent: 100%;
}

HiDPI support

Use special functions hidpi-image-width|height|size to insert dimesnions divided by 2 if the image filename contains @2x in it. For example, considering the [email protected] size is 640x480:

div {
  background-size: hidpi-image-size('[email protected]');
  width: hidpi-image-width('[email protected]');
  height: hidpi-image-height('[email protected]');
}

will produce:

div {
  background-size: 320px 240px;
  width: 320px;
  height: 240px;
}

Functions

Insert actual size of the image in px:

  • image-width('path/to/image') -- inserts the width of the image in px;
  • image-height('path/to/image') -- inserts the height of the image in px;
  • image-size('path/to/image') -- inserts the width AND the height of the image separated by white-space;

Insert image dimensions divided by 2 only if filename contains @2x in it. Otherwise insert real dimensions:

  • hidpi-image-width('path/to/image@2x') -- inserts the width of the image divided by 2 for HiDPI images in px;
  • hidpi-image-height('path/to/image@2x') -- inserts the height of the image divided by 2 for HiDPI images in px;
  • hidpi-image-size('path/to/image@2x') -- inserts the width AND the height of the image divided by 2 for HiDPI images separated by white-space;

License

MIT