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

icheckmovies-icon-font

v1.0.10

Published

iCheckMovies Icon Font is an open source icon font, designed for the iCheckMovies website. It features dozens of unique icons in three styles.

Downloads

3

Readme

iCheckMovies Icon Font

Bower version Build Status devDependency Status

iCheckMovies Icon Font is an open source icon font, designed for the iCheckMovies website. It features dozens of unique icons in three styles:

  • Default: just the icon (.icm-icon-*).
  • Circled: the icon with a nice circle around it (.icm-icon-*-circled).
  • Filled: a filled circle with a negative cutout of the icon (.icm-icon-*-filled).

License

See the LICENSE.md file.

Changelog

See the CHANGELOG.md file.

Usage

Quick start

You can either:

  • Download the latest release
  • Clone the repository: git clone https://github.com/studio-donder/icheckmovies-icon-font.git
  • Install with Bower: bower install icheckmovies-icon-font

Manual usage

Fonts

Copy the font files (availabe in eot, svg, ttf and woff format) you need from build/fonts to your project's font folder. You can also install them in your OS and use them to design stuff.

CSS

Use one of the CSS files found in build/styles (normal or minified) and include them in your project. The CSS imports the font files using the @font-face declaration:

@font-face {
  font-family: 'iCheckMovies';
  src: url('/fonts/iCheckMovies.eot');
  src: url('/fonts/iCheckMovies.eot?#iefix') format('embedded-opentype'),
    url('/fonts/iCheckMovies.woff') format('woff'),
    url('/fonts/iCheckMovies.ttf') format('truetype'),
    url('/fonts/iCheckMovies.svg#iCheckMovies') format('svg');
}

Replace the /fonts/ path with the path you installed the fonts in.

LESS

If you prefer building the CSS yourself using LESS, use the LESS file found in build/styles. You can customize three variables to adjust the output file to your project's environment. Default values are:

@icm-icon-font-path:   "/fonts/";
@icm-icon-font-name:   "iCheckMovies";
@icm-icon-font-svg-id: "iCheckMovies";

HTML

Always use the .icm-icon class combined with a specific icon class (e.g. icm-icon-plus-circled). For example:

<span class="icm-icon icm-icon-plus-circled"></span>

This prints an icon with a + shape and a circle around it.

Building yourself

Node.js

In order to build the icon fonts, LESS and CSS yourself, you'll need to have node.js installed on your development machine.

FontForge

Also, since this project is relying on grunt-webfont, please refer to its documentation regarding the installation of FontForge, which enables auto hinting on the generated fonts.

Dependencies

Once you've installed node.js, browse to the project's root directory and run the following command to install all dependencies:

npm install

Grunt

Now you're ready to build! This project uses Grunt to run all its tasks. There are a few tasks defined in the GruntFile.js task definition file, but we've defined an alias task called default that runs all necessary tasks in the correct order (from the project's root directory again):

grunt default

This will clean all files, generate the font files, compile the LESS files to CSS and put the results in the build directory.

Versioning

To release a new version, do as follows:

  • Update package.json: update the version number.
  • Update CHANGELOG.md: describe the changes here.
  • Release the version in the releases tab on GitHub.