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

csc-breeann-webcomponents-stencil

v0.0.103

Published

Breeann Test Web Components

Readme

Built With Stencil

Columbia Sportswear Company Web Components with AEM + SFCC

CSC Web Components library - taking basic AEM configurations values that can be passed and previewed using StencilJS and then viewed as a published SFCC Content Asset that can be useable in SFCC Content Slots.

Prerequisites:

StencilJS - Installation of StencilJS in your local development environment

AEM - Access to local AEM instance

SFCC - Access to a local SFCC sandbox environment

Stencil

Stencil is a compiler for building fast web apps using Web Components.

Stencil combines the best concepts of the most popular frontend frameworks into a compile-time rather than run-time tool. Stencil takes TypeScript, JSX, a tiny virtual DOM layer, efficient one-way data binding, an asynchronous rendering pipeline (similar to React Fiber), and lazy-loading out of the box, and generates 100% standards-based Web Components that run in any browser supporting the Custom Elements v1 spec.

Stencil components are just Web Components, so they work in any major framework or with no framework at all.

Getting Started

To start building a new web component using Stencil, clone this repo to a new directory:

git clone [email protected]:columbiasportswear/webcomponents.git
cd webcomponents

and run:

npm install
npm start

To build the component for production, run:

npm run build

Need help?

  • View our Stencil Documentation in Confluence here
  • Check out Stencil First Component docs here.

Naming Components

Prefix your component tag names with csc (ex: <csc-text> <csc-hero>, etc.) Later on, if we need specific components for specific brands we can look into branching off and naming them according to brand name (ex: <pra-text> <pra-hero>, <sor-text> <sor-hero>, <mhw-text> <mhw-hero> etc.)

When creating new component tags, we recommend not using stencil in the component name (ex: <stencil-datepicker>). This is because the generated component has little to nothing to do with Stencil; it's just a web component!

Instead, use a prefix that fits your company or any name for a group of related components. For example, all of the Ionic generated web components use the prefix ion.

Unit Testing

To run the unit tests for the components, run:

npm test

This will test all .spec.ts and .e2e.ts files in the components directory.

When creating a new component, be sure to create these two files for Unit Testing (.spec.ts) and End to End Testing (.e2e.ts) your code.

Be sure to test the code prior to making a PR.

  • For more information on Unit Testing in Stencil here

Linting

To run ESLint, run:

npm run lint

This will validate all .ts,.tsx files in the code base.

If there are eny warnings/errors, it will report the files that need to be fixed. A successful linting should result in no warnings or errors.

Script tag

  • Put a script tag similar to this <script type='module' src='https://unpkg.com/[email protected]/dist/webcomponents.esm.js'></script> in the head of your index.html
  • Then you can use the element anywhere in your template, JSX, html etc

Node Modules

  • Run npm install csc-webcomponents --save
  • Put a script tag similar to this <script type='module' src='node_modules/webcomponents/dist/webcomponents.esm.js'></script> in the head of your index.html
  • Then you can use the element anywhere in your template, JSX, html etc

In a stencil-starter app

  • Run npm install csc-webcomponents --save
  • Add an import to the npm packages import my-component;
  • Then you can use the element anywhere in your template, JSX, html etc

Production Build

This repository is being built using our Production Jenkins cluster at here. The build checks out the master branch and then does a replace on the version number in package.json and the .npmrc_config file has the token field replaced with a valid deployment token. Then the following:

  • mv .npmrc_config .npmrc
  • npm ci
  • npm run build
  • npm run lint
  • npm test
  • npm publish

Slack notifications are sent to the #auto-deploy-webcomponents channel on Build Start, Build Success, and Build aborted

There is a custom Docker image built for this currently in the public Docker account Name: columbiaecomm/jnlp-agent-node:latest that we use but in the future we will migrate this to our Private ECR images

Note: it is named .npmrc_config to prevent credentials being introduced into the repository