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 🙏

© 2025 – Pkg Stats / Ryan Hefner

helix-css

v1.0.1

Published

A developer-friendly CSS framework for modern web development

Readme

Logo Helix CSS

About

Helix CSS is an intuitive CSS framework designed to streamline web development with simple, easy-to-use utilities for building modern web projects. With a focus on developer experience, responsive design, and simplicity, Helix CSS offers a comprehensive set of classes that make creating adaptive and visually appealing layouts effortless and enjoyable.

Key Features

  • Developer-friendly: Simple and intuitive class naming convention that accelerates development
  • Modular: Choose only the modules you need for your project, or use the complete framework for a comprehensive solution.
  • Easy to use: Straightforward utilities that require minimal learning curve
  • Responsive: Built-in responsive grid system for creating flexible and adaptive layouts across various devices and screen sizes.
  • Customizable: Easily customize and extend Helix CSS to suit your project's specific requirements.
  • Efficient: Optimized for performance while maintaining comprehensive functionality

Get started

You can also install the Helix CSS library via NPM:

npm i helix-css

Or you can embed the CDN code in your file:

HTML

<!-- Compressed -->
<link
	rel="stylesheet"
	href="https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/main.min.css" />

<!-- Expanded -->
<link
	rel="stylesheet"
	href="https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/main.css" />

CSS

/* Compressed */
@import url('https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/main.min.css');

/* Expanded */
@import url('https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/main.css');

Modules

You can also install the separate modules in your project

// Compressed
https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/module/layout.css

// Expanded
https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/module/layout.min.css

Quick Start

Here’s a basic example of using Helix CSS:

HTML Example

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta
			name="viewport"
			content="width=device-width, initial-scale=1.0" />
		<title>Helix CSS Example</title>
		<link
			rel="stylesheet"
			href="https://cdn.jsdelivr.net/gh/Helixify/helix-css@latest/dist/main.min.css" />
	</head>
	<body>
		<section class="p-block-16">
			<div class="ds-flex-center">
				<h1 class="text-center">Hello World</h1>
				<p class="text-muted">Welcome to Helix CSS!</p>
			</div>
		</section>
	</body>
</html>

React Example

import 'helix-css'

export const App = () => {
	return (
		<section className='p-block-16'>
			<div className='ds-flex-center'>
				<h1 className='text-center'>Hello World</h1>
				<p className='text-muted'>Welcome to Helix CSS!</p>
			</div>
		</section>
	)
}

Vue Example

<template>
  <section class="p-block-16">
    <div class="ds-flex-center">
      <h1 class="text-center">Hello World</h1>
      <p class="text-muted">Welcome to Helix CSS!</p>
    </div>
  </section>
</template>

<script>
import 'helix-css';

export default {
  name: 'App'
};
</script>

License

Helix CSS is released under the MIT License. You are free to use and modify it for your projects.