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

@vwt-digital/ddmt-lib

v1.0.1

Published

The Dynamic Data Manipulation Tool Angular libary.

Readme

DDMT-lib

This package creates an AG-grid that is dynamically generated based on an OpenAPI specification and a few component inputs.

When installing the package please make sure to also install the peerDependencies since they are not installed automatically.

Setup

After installing you'll also need to set the ag-grid theme you wish to use and the color of the buttons.

The color of the buttons can be set using a css variable named ddmt-theme-color. The ag-grid theme can be provided by importing the css file into your styles.scss and providing the name of the theme using the theme input.

Example

// styles.scss

// Required
@import "~ag-grid-community/dist/styles/ag-grid.css";

// Import one of the css themes of ag-grid
@import "~ag-grid-community/dist/styles/ag-theme-balham.css"; // One of the many themes

// Set the button colors.
:root {
  --ddmt-theme-color: #008bb8;
}

In your angular module add the following:

...

import { DDMTLibModule } from '@vwt-digital/ddmt-lib';

@NgModule({
  declarations: [
    ...
  ],
  imports: [
    ...,
    DDMTLibModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

And in your html:

<dat-ddmt-grid
  theme="ag-theme-balham"
  [authentication]="authentication"
  [apiUrl]="apiUrl"
  [entityName]="entityName"
  [agGridAPIKey]="apiKey"
  gridName="test">
</dat-ddmt-grid>

Example

For more information please clone the repo and run it using ng serve to see an example project.