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

st-jss

v1.0.5

Published

Nano library to work with CSS in TS

Downloads

69

Readme

Gitter

This is an exremely tiny, yet powerful library for generation of CSS in TypeScript. st-jss does include all special types like font-face, keyframes, @media queries and :pseudo-selectors.

  • ✅ Implements a JSS-like API to work with CSS in TS
  • ✅ Comes with namespace support
  • ✅ Tiny: 591 bytes (best, brotli) - 781 bytes (worst, umd, gz)
  • ✅ Zero dependencies
  • ✅ First class TypeScript support
  • ✅ 99% Unit Test coverage

This is how using st-jss looks like:

import {Props, tsx, render} from "springtype";
import { jss } from 'st-jss';

export const MyStyledCmp = ({ children }: Props) => {
  const [animationName, animationStyle] = jss.makeAnimation('myAnimation', {
    '0%': { top: 0, left: 0, background: 'red' },
    '25%': { top: 0, left: 100, background: 'blue' },
    '50%': { top: 100, left: 100, background: 'yellow' },
    '75%': { top: 100, left: 0, background: 'green' },
    '100%': { top: 0, left: 0, background: 'red' },
  });

  const [classes, style] = jss.makeStyles({
    container: {
      // Normal jss
      fontFamily: 'Nonito',
      '@media (min-device-width: 800px)': {
        paddingTop: 50,
        flex: 1,
        ':hover': {
          backgroundColor: 'red',
        },
      },
    },
    animation: {
      paddingTop: 50,
      animationName,
      animationIterationCount: 'infinite',
      animationDuration: '4s',
    },
  });

  const onChangeStyleClick = () => {
    console.log('ref?', style);
  };

  return (
    <fragment>
      {style}
      {animationStyle}
      <div className={classes.container}>{children}</div>
      <div className={classes.animation} />
      <button type="button" onClick={onChangeStyleClick}>
        Change style
      </button>
    </fragment>
  );
};

render(<MyStyledCmp />);

The following contract is made between the webapp and st-jss:

export interface API {
  classNamePrefix: string;
  instanceCounter: number;
  makeFont: (style: FontFaceProperties) => IVirtualNode;
  makeAnimation: (animationName: string, style: KeyFrameProperties) => [string, IVirtualNode];
  makeStyles: <T extends string = string>(classProperty: ClassProperty<T>) => [Record<T, string>, IVirtualNode];
}

Thank you so much for supporting us financially! 🙏🏻😎🥳👍

st-jss is brought to you by:

Please help out to make this project even better and see your name added to the list of our CONTRIBUTORS.md :tada: