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

@justeattakeaway/pie-webc-core

v0.21.1

Published

PIE design system base classes, mixins and utilities for web components

Downloads

6,043

Readme

pie-webc-core

  1. Introduction
  2. Installation
  3. Importing the package
  4. Dependencies
  5. Contributing
  6. Testing
  7. Bundling

Introduction

A core library for PIE web components which contains classes, mixins, utilities and anything other functionality that can be shared across web components.

Installation

To add pie-webc-core to your component, run the following on your command line:

$ yarn add @justeattakeaway/pie-webc-core

Importing the package

import { RequiredProperty, RtlMixin } from '@justeattakeaway/pie-webc-core';

export class MyComponent extends RtlMixin(LitElement) implements MyComponentProps {
  // ...

  @property({ type: String })
  @requiredProperty('my-component')
  public value!: string;

  // ...
}

Dependencies

This package provides lit as a dependency which means the package that depends on @justeattakeaway/pie-webc-core will automatically install lit into the node_modules folder of its consuming application.

Other dependencies may be added in future to make it easier for people to install and use our components.

Contributing

Check out our contributing guide for more information on local development.

To run the unit tests, simply run yarn test --filter=pie-webc-core from the root of the monorepo.

Testing

  • Currently we have two methods of testing our core utilities:
    • Unit tests using Vitest
    • Browser tests using Playwright

Unit tests

We write unit tests for small pieces of functionality that can be tested in isolation. These could be things such as class decorators or utility functions. However, sometimes testing in an isolated node environment is not enough. This is where Browser tests come in.

Browser tests

We write browser tests for functionality that requires a browser environment to test. This could be things such as component class mixins. For these, we run our tests using Playwright. This allows us to run our tests in a real browser environment and test things such as DOM manipulation and events. A useful pattern for this kind of testing is to write a mock component that uses the mixin you want to test. This allows you to test the mixin in isolation without having to worry about the implementation of the component itself.

Naming and running tests

Currently, for writing unit tests we simply name the file **/*.spec.ts. To write browser tests, we name the file **/*.browser.spec.ts. This allows us to run all unit tests using yarn test --filter=pie-webc-core and all browser tests using yarn test:browsers --filter=pie-webc-core.

Bundling

When we build the package, we run a plugin for Rollup named rollup-plugin-visualizer. This generates a file named stats.html in the root of the package. This file can be viewed in the browser to visualise the bundled Javascript and better understand what contributes to the size of the final build output.