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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hokulea/ember

v0.13.0

Published

Hokulea Design System for Ember

Readme

Hokulea

Test Coverage Maintainability

Welcome to Hokulea the whimsical Design System for Ember.

Installation

You need the following packages:

pnpm add -D @hokulea/core @hokulea/ember @hokulea/theme-moana

This will give you the hokulea core (css), the Ember API and the moana (ocean) theme.

In your app.(t|j)s file include the css file:

// app.(t|j)s

import '@hokulea/core/index.css';

Theming

Theming will play a big role. The technical, heavy part is done - but resources for this aren't available yet.

The theme is loaded (and managed) with theemo. There is theme loaders for webpack and vite.

Vite

For vite, theemo has two packages that will take of loading and managing themes:

pnpm add -D @theemo/ember @theemo/vite

Then configure them in vite.config.(m)js:

import { theemo } from '@theemo/vite';

export default defineConfig({
  plugins: [
    // ...
    theemo({
      defaultTheme: 'moana'
    })
  ]
});

At runtime you can use TheemoService from @theemo/ember to manage multiple themes.

Classic and Embroider + Webpack

Use ember-theemo which has all the things for webpack included:

pnpm add -D ember-theemo

Then configure it:

// ember-cli-build.js
module.exports = function (defaults) {
  let app = new EmberApp(defaults, {
    // ...
    theemo: {
      defaultTheme: 'moana'
    },
  };

Webpack requires a loader for the themes:

const theemoPlugin = require('ember-theemo/lib/webpack');

// ember-cli-build.js
module.exports = function (defaults) {
  const { Webpack } = require('@embroider/webpack');
  return require('@embroider/compat').compatBuild(app, Webpack, {
    // ..
    packagerOptions: {
      webpackConfig: {
        plugins: [theemoPlugin()],
      }
    }
  };
});

Icons

Hokulea is icon agnostic, it only expects you provide svg's with currentColor. Meaning you can bring your own icons. Luckily there is Iconify which has build an API to access many publicly available icons as well as supporting your own. Hokulea was build supporting them.

You need to load them based on your bundler.

Vite

Install:

pnpm add -D unplugin-icons

and then configure the plugin in your vite.config.(m)js file:

import { FileSystemIconLoader } from 'unplugin-icons/loaders';
import icons from 'unplugin-icons/vite';

export default defineConfig({
  plugins: [
    // ...
    icons({
      autoInstall: true,
      compiler: 'raw',
      customCollections: {
        custom: FileSystemIconLoader('./assets/icons')
      }
    })
  ]
});

Webpack

Install:

pnpm add -D unplugin-icons

and then configure the plugin in ember-cli-build.js:

'use strict';

const EmberApp = require('ember-cli/lib/broccoli/ember-app');
const packageJson = require('./package');
const icons = require('unplugin-icons/webpack').default;
const { FileSystemIconLoader } = require('unplugin-icons/loaders');

const iconify = icons({
  autoInstall: true,
  compiler: 'raw',
  customCollections: {
    custom: FileSystemIconLoader('./assets/icons')
  }
});

module.exports = function (defaults) {
  let app = new EmberApp(defaults, {
    // ...

    autoImport: {
      watchDependencies: Object.keys(packageJson.dependencies),
      webpack: {
        plugins: [new GlimmerScopedCSSWebpackPlugin(), iconify]
      }
    },
  });

  const { maybeEmbroider } = require('@embroider/test-setup');

  return maybeEmbroider(app, {
    packagerOptions: {
      webpackConfig: {
        plugins: [iconify]
      }
    }
  });
};

Classic

For classic you can use ember-svg-jar and use svg's from there.

Usage

Them use these icons:

import { Icon } from '@hokulea/ember';
import Unicycle from '~icons/custom/unicycle';
import Activity from '~icons/ph/activity';

<template>
  Do some 
  <Icon @icon={{Unicycle}} />
  <Icon @icon={{Activity}} />
</template>

Or with svg-jar:

Do some 
<Icon @icon={{svg-jar "unicycle"}} />
<Icon @icon={{svg-jar "activity"}} />