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

next-yak

v0.1.2

Published

![Yak At Work as Frontend Dev](https://github.com/jantimon/next-yak/assets/4113649/2dcaf443-7205-4ef3-ba44-fbbe3ef2807d)

Downloads

218

Readme

next-yak

Yak At Work as Frontend Dev

npm version License

next-yak is a CSS-in-JS solution tailored for Next.js that seamlessly combines the expressive power of styled-components syntax with efficient build-time extraction of CSS using Next.js's built-in CSS configuration.

Features

  • NextJs Compatibility: Works smoothly with both React Server and Client Components
  • Build-time CSS: Reduces load time by handling CSS during the build phase, using Next.js built-in CSS Modules features
  • Lightweight Runtime: Operates with minimal impact, simply changing CSS classes without modifying the CSSOM
  • Standard CSS Syntax: Write styles in familiar, easy-to-use CSS
  • Integrates with Atomic CSS: Easily combines with atomic CSS frameworks like Tailwind CSS for more design options

Preview (Video)

Installation

npm install next-yak

or

yarn add next-yak

Getting Started

Try it on stackblitz

Locally

  1. Install next-yak in your Next.js project.

  2. Add next-yak to your next.config.js:

// next.config.js
const { withYak } = require("next-yak/withYak");

const nextConfig = {
  // your next.js config
};

module.exports = withYak(nextConfig);
  1. Ready to go:
// pages/index.js
import { styled } from 'next-yak';

const StyledDiv = styled.div`
  color: #333;
  padding: 16px;
  background-color: #f0f0f0;
`;

function HomePage() {
  return <StyledDiv>Hello, next-yak!</StyledDiv>;
}

export default HomePage;

More Examples

Dynamic Styles

Dynamic Styles will only toggle the css class during runtime:

import { styled, css } from 'next-yak';

const ToggleButton = styled.button`
  ${props => props.$active
     ? css`background-color: green`
     : css`background-color: lime`
  };
  color: white;
  padding: 10px 20px;
`;

Dynamic Styles (Video)

Dynamic Properties

Dynamic Properties use custom properties (aka css variables) under the hood to extract the CSS at built time but modify properties at runtime:

import { styled } from 'next-yak';

const ProgressBar = styled.div`
  width: ${props => `${props.$percent}%`};
  height: 20px;
  background-color: #3498db;
  transition: width 0.3s ease-in-out;
`;

const ProgressBarContainer = styled.div`
  border: 1px solid #ccc;
`;

const ExampleComponent = () => {
  const progress = 75; // You can dynamically set this value

  return (
    <ProgressBarContainer>
      <ProgressBar $percent={progress} />
    </ProgressBarContainer>
  );
};

Dynamic Props (video)

Targeting Components

In next-yak, you can target other components directly using CSS selectors as long as they are in the same file:

import { styled, keyframes } from 'next-yak';

const flip = keyframes`
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
`;

const Glow = styled.div`
  /* Add your Glow component styles here */
`;

const Text = styled.span`
  display: inline-block;
  ${Glow}:hover & {
    animation: 1.5s ${flip} ease-out;
  }
`;

const ExampleComponent = () => {
  return (
    <Glow>
      <Text>This text will flip on hover.</Text>
    </Glow>
  );
};

Nesting

next-yak supports nesting out of the box.
For now Next.js 13 supports nesting only with the postcss-nested plugin.
Therefore you have to create a postcss.config.js file in your project root:

// postcss.config.js
module.exports = {
  plugins: {
    'postcss-nested': {},
  }
};

Nesting Example (video)

Motivation

Most of the existing CSS-in-JS libraries are either slow or have a complex api. This project tries to find a middle ground between speed and api complexity.

The goal of this project is to create a proof of concept for a CSS-in-JS library that has the following properties:

  • fast
    • no runtime
    • can be statically extracted
    • can be optimized by postcss
    • no processing during hydration
    • can make use of 103 early hints
  • api
    • ui colocation (mixing css and jsx)
    • familiar styled.div api
    • composable styled(Component)
    • allows conditional styles
    • allow to use props in styles
    • allow to use a context based theme in styles
    • typescript support

Optimizations are done by postcss. This allows to use the full power of postcss and its plugins. It also allows to use the same optimizations for css files and css-in-js.

Performance Gains

CSS Extract

How it works

next-yak converts css-in-js into css modules. This allows to use the full power of postcss and its plugins. It also allows to use the same optimizations for css files and css-in-js.

Compile Flow

Atomic CSS

next-yak ships with atomic css support
So you can use tailwind out of the box without additonal configuration.

import { styled, atoms } from "next-yak";

// Mixing tailwind with custom styles
const Icon = styled.p`
 ${atoms("font-bold")}
 @supports (initial-letter: 2) {
   initial-letter: 2;
 }
`;

// Apply tailwind classes conditionally
const Button = styled.button`
  ${({ $primary }) =>
    $primary
      ? atoms(
          'bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded'
        )
      : atoms(
          'bg-transparent hover:bg-blue-500 text-blue-700 font-semibold hover:text-white py-2 px-4 border border-blue-500 hover:border-transparent rounded'
        )}
`;

Build Time Constants

The downside of dynamic properties is that they require inline style attributes.
While this is not a problem for most cases, we can't use them for media queries.

next-yak allows you to define build time constants which can be used in your styles:

import { styled } from 'next-yak';
import { breakpoints, spacings } from './constants.yak';

const Container = styled.div`
  padding: ${spacings.md};
  ${breakpoints.md} {
    padding: ${spacings.lg};
  }
`;

| Feature | Code | Yak Constant files | |:-----------------|:------------------------------------------------|:-----------------------------------------------| | File Extension | .js, .jsx, .tsx, etc. | .yak.js, .yak.jsx, .yak.tsx, etc. | | Runs at | Runtime (Node or Browser) | Compile time (Bundler) | | Side effects | ✅ | 🚫 | | Yak Features | All (styled, css, ...) | 🚫 |

Build time constants (video)

Todos:

next-yak is currently in the development phase, with several todos that must be completed before it is ready for production:

  • [ ] improve js parsing - right now it not reusing babel..
  • [ ] better sourcemaps
  • [ ] improve runtime code size and typings
  • [ ] maybe remove proxy by compiling styled.button -> styled("button")
  • [ ] better error messages
  • [x] replace the current config apporach with a solution similar to vanilla-extracts .styles.ts files
  • [x] add theme provider (which works for Server Components)
  • [x] add support for forwardRef
  • [x] add support for attrs
  • [x] config hot module reloading
  • https://github.com/vercel/next.js/pull/51115
  • https://github.com/vercel/next.js/pull/53796
  • https://github.com/css-modules/postcss-modules-local-by-default/pull/64

Acknowledgments

Special thanks to the contributors and the inspiring projects that influenced next-yak:

  • Styled-Components 💅: For pioneering the styled syntax and redefining styling in the React ecosystem.
  • Linaria: For its innovative approach to zero-runtime CSS in JS and efficient styling solutions.
  • Emotion: For pushing the boundaries of CSS-in-JS and providing a high-performance styling experience.
  • Vanilla Extract: For its focus on type-safe, zero-runtime CSS and contributing to the evolution of styling techniques.
  • Tailwind CSS: For its exceptional atomic CSS approach, enabling efficient and customizable styling solutions.

License

next-yak is licensed under the MIT License.


Feel free to reach out with any questions, issues, or suggestions!