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

@mycovalent/experimental

v0.0.0-COVALENT

Published

Teradata UI Platform Experimental Module

Readme

The experimental area is a sandboxed repository used to conduct experiments on potential features that may or may not become part of a fully supported Covalent release. We want to set the correct expectations of how the community should view this experimental area. We do not plan to provide support for any items created in the experimental area unless the experiment is promoted into the non-experimental area of Covalent github repository. We would love any feedback on these experiments from the community :).


How to create a new experiment

Step 1: Clone Covalent repo

  1. git clone https://github.com/Teradata/covalent

Step 2: Copy the template experiment

  1. cd src/platform/experimental
  2. cp -R template-rename-me-experiment-module <my-new-experiment> Change my-new-experiment to the name of your experiment (keep it short and use dashes)

Step 3: Renaming the templates contents

  1. cd <my-new-experiment> (Replace above my-new-experiment to the name of your experiment)
  2. List out the directory contents with command: ls
  3. Notice all the filenames with rename-me in them for example rename-me.component.html
  4. Change all filenames with rename-me to <my-new-experiment> for example: my-new-experiment.component.html. (Replace above my-new-experiment to the name of your experiment)
  5. Open all the files in the directory with a text editor and anywhere you see rename-me renameMe or RenameMe replace it with your experiments name. Respective of casing style.
  6. In a text editor open src/platform/experimental/public-api.ts and include your experiment by adding the following line to the end of the file: export * from './<my-new-experiment>/index'; (Replace above my-new-experiment to the name of your experiment)

Step 4: Run test-bed application

  1. npm run serve:experimental

Notes:

  1. By following the template your experiment will be compiled into standard compliant Angular Package Format (APF) via ng-packagr. If you would like to learn more about the benefits of APF you can reference this link.
  2. Don't forget to update your experiments public-api.ts and your experiments *.module.ts files as you decide what parts of your new experiment/feature you want to publicly expose to your fellow developers using it.
  3. After you create your experiment test it out on a new/existing compatible angular project (respective of the angular version your experiment is using) and verify that you can use your experiment as designed. Do this by running npm run build:lib, and npm installing the generated deploy/experimental.tgz respective of file path from the new project that you create. To find out more about how to npm --save install your .tgz file check this link.
  4. If you experiment starts to become a serious project: (1) fill out your experiments README.md and (2) write unit tests for it.
  5. If you have question please don't hesitate to ask us by either opening a GitHub issue or connecting with us in the Covalent Gitter channel.

How to install experimental modules

WARNING: Experimental features are prone to change or be removed at any time. Do not use in production as these features are unsupported!

Installation

npm install --save https://github.com/Teradata/covalent-experimental-nightly.git

Import the Covalent Experimental NgModules

src/app/app.module.ts

import { CovalentTabSelectModule } from '@covalent/experimental/tab-select';
...
// other imports 
@NgModule({
  imports: [
    CovalentTabSelectModule,
  ],
  ...
})
export class AppModule { }