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

tapp-plugins

v1.0.0-updt6

Published

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.10.2. The core purpose of this library is to use different components implemented in most application instead of making them from scratch with adding some cus

Downloads

15

Readme

Tapp-Plugins

This library was generated with Angular CLI version 14.10.2. The core purpose of this library is to use different components implemented in most application instead of making them from scratch with adding some customized/end user's own information.

Plot

We have use this design to implemenet on dashboard. Figma Link

Code scaffolding

Run npm install tapp-plugins --legacy-peer-deps to install library.

Important Note:

Packages Below Version 1.0 are not for users, they are just for testing purpose. Always download/install package <= version 1.

Current Version & Changelogs:

In current version we worked on Customized Dashboard Component, when used will act as plugin, we will work on further updates later.

This version is the continuation of previous version just with a little change in readme

Methodolgy

We are using PrimeNg, PrimeIcons, Bootstrap, Tailwind, Ng Nt Design and Apexcharts as of third party libraries. For understanding of code please go through our github repository, will be shared on request.

Configurations

Add the following commands for configurations in angular.json file.

In styles tag.

"node_modules/primeicons/primeicons.css",
"node_modules/primeng/resources/themes/nova-accent/theme.css",
"node_modules/primeng/resources/primeng.min.css",
"node_modules/bootstrap/dist/css/bootstrap.css"

And in scripts tag.

"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/apexcharts/dist/apexcharts.min.js"

In tsconfig.json file, add the following in the compilerOptions tag:

"compilerOptions":{
  ...............,
  ...............,
  "strict": false,
  "skipLibCheck": true,
  ...............,
  ...............
}

In index.html file of project use this line below meta tag:

<link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,700" rel="stylesheet">

For tailwind configration run command npx tailwindcss init and follow this Documentation

Note: If problem occured like primeng and primeicons or any dependency not found, install them from via using npm through their documentation.

How to Use

In module file import the PluginModule.

in constructor:

imports: [
    ...........,
    ...........,
    PluginsModule
  ]

After this import the library's style in styles.scss/css file:

@import "node_modules/tapp-plugins/src/custom/custom.styles";

-- For Dashboard Component: In component file, call the selector of the dashboard component and pass values through parent component binding. We made it in a dynamic way that you can use your own values

<plugin-dashboard 
[CardInfo]="cardData" 
[midGridFirst]="midBox1" [midGridSecond]="midBox2"  
[ChartInfo]="graphData" [socialMedia]="socialMedia">
</plugin-dashboard>

While calling the selector, keep a thing in notice that the objects. Whose values are being passed to dashboard component selector, must follow this model as present in plugins.model.ts file and you could also Import them and map them:


//Type values to patch for [CardInfo] input
export type CardData = {
  heading: string;
  value: string;
  interval: string;
}

//Type values to patch for [midGridFirst] input

export type InfoGrid = {
  title: string;
  data: PeopleInfo[]
}

//Type values to patch for [midGridSecond] input
export type StatsGrid = {
  icon: string;
  progress: number;
  label: string;
  icon_color: string;
  icon_background: string;
  active: boolean
}

//Type values exist in "data" object of "InfoGrid" Type
export type PeopleInfo = {
  name: string;
  avatar: string;
  progress: number;
  ratings: number;
  time: string;
  left: string
}


//Type values to patch for [ChartInfo] input
export type GraphData = {
  series: Series[];
  colors: [];
  dates: [];
  days: number;
  title: string;
}

//Type values exist in "series" object of "GraphData" Type
export type Series = {
  name: string;
  data: [];
  color: string;
}

//Type values to patch for [socialMedia] input

export type SocialMedia = {
  src: string;
  label: string
}

Further help

To get more help on this library or suggestion go check out the Github page or contact us at [email protected].