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

facetat

v1.2.3

Published

A powerful yet neat way to write responsive styles for emotion CSS-in-Js

Downloads

10

Readme

facetat

npm version download minified size GZip size Greenkeeper badge codecov License CircleCI

A neat and efficient way to write responsive styles for CSS-in-Js libraries.

Like facepaint, but even more powerful.

Usage

Initialization

import facetat from 'facetat';

// Initialize
const mq = facetat(
  // A breakpoint map from string to number that can be of any size.
  // You can name them anything as your want.
  // e.g. { mobile: 1, phablet: 2, tablet: 3, laptop: 5, desktop: 6 }
  { XS: 1, SM: 2, MD: 3, LG: 5, XL: 6 },
  // The default unit when a unitless number is specified.
  // Accept rem, em, px, or other valid css units
  { unit: 'rem' }
);

Single-media Form

// Expected Result:
//
// @media (min-width: 1rem) {
//   [className] {
//     width: 100rem;
//   }
// }

// Usage:
//
// CSS function from any CSS-in-Js libraries, for example, emotion
import { css } from '@emotion/core';

const style = mq.XS(
  css`
    width: 100rem;
  `
);

// Shortcut of the above
const style = mq.XS`width: 100rem;`;

// Plain Javascript object
const style = mq.XS({ width: 100 });

Single-property Form

// Expected Result:
//
// @media (min-width: 1rem) {
//   [className] {
//     width: 100rem;
//   }
// }
// @media (min-width: 1rem) and (max-width: 2rem) {
//   [className] {
//     width: 200rem;
//   }
// }

// Usage:
//
// Plain Javascript object
const style = mq.width(null, 100, '200rem');

Chaining Form

// Expected Result:
//
// [className] {
//   width: 50px;
// }
// @media (min-width: 1rem) {
//   [className] {
//     width: 100rem;
//   }
// }
// @media (min-width: 1rem) and (max-width: 2rem) {
//   [className] {
//     width: 200rem;
//   }
// }

// Usage:
//
// Emotion css object
const style = mq(
  css`
    width: 50px;
  `,
  css`
    width: 100rem;
  `,
  css`
    width: 200rem;
  `
);

// Plain Javascript object
const style = mq({ width: '50px' }, { width: 100 }, { width: '200rem' });

Compact Form

// Expected Result:
//
// [className] {
//   width: 50px;
// }
// @media (min-width: 1rem) {
//   [className] {
//     width: 100rem;
//   }
// }
// @media (min-width: 1rem) and (max-width: 2rem) {
//   [className] {
//     width: 200rem;
//   }
// }

// Usage:
//
const style = mq({ width: ['50px', 100, '200rem'] });

Editor Support

VSCode

When used with typescript-styled-plugin, please add mq to the list of formatting-eligible tagged template literals.

{
  "compilerOptions": {
    "plugins": [
      {
        "name": "typescript-styled-plugin",
        "tags": ["styled", "css", "mq"]
      }
    ]
  }
}

Support

This library has been continuously used in many of my personal projects, and is regarded as production-ready. In the foreseeable future, I will continuously maintain and support this library.

Issues and Feedback

Please voice your opinion and report bugs in the issues sections of this GitHub project.

Contributing

You are more than welcome to add more functionalities, improve documentation, fix bugs, and anything you think is needed. The build step is pretty self-explanatory. Please refer to CONTRIBUTING.md for more details.

License

MIT