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

vue-mdc-adapter-forked

v0.18.4

Published

Disgruntled web developer fixing some of Vue wrapper arround Material Components for the Web

Readme

npm version

Material Components for Vue

This is a fork of vue-mdc-adapter. Back in May of 2018, I was excited to learn Vue.js and make use of this clean looking framework. It was getting a thumbs up from Google and NPM was showing 9,000 weekly downloads. How could things go wrong? Afterall, Google was promoting it. Who doesn't trust Google? (Sigh). Anyway, needless to say, things eventually went down the poop chute. For months I tried requesting changes, but it all fell on deaf ears. I was a sad panda. But, not all was lost. After many nights of crying and no sleep, I decided to fork the project and make the changes myself. Great success!!! It's nice!!!

vue-mdc-adapter is an integration of Material Components for Vue.js which follows the best practices recommended by Google: Using Foundations and Adapters

This project aims to find the right balance between ease of use and customization while sticking to the Vue Spirit (approachable, versatile, and performant)

Some Fixes & Removals

  • I was spending too much time trying to get the chips component to build correctly. The auto generated code basically created some component called VueMDCChips which of course does not exist. When I'd install the module from NPM and run it, NPM would tell me VueMDCChips is not defined. Why you ask? Whatever auto generator was used probably can't interpret the word ChipSet or something. I don't know. So, I said screw it and removed chips from the package. People have day jobs ya know.
  • For the longest time I wanted to remove the damn href=#" in the top-app-bar component. FFS!!!! The Material Design standard does not even have it in there. Without that stupid # I can finally click on my other components without the whole screen jumping to the top of the page. (Sigh of relief).

Quick Links

Project Status

This project is under active development. The focus is on known issues, validation, and keeping up with MDC updates.
Do not hesitate to open an issue on GitHub, contact us on Gitter, or follow us on Twitter @vuemdc

Each MDCWeb component is mapped to a single vue plugin

Extra plugins

  • [x] layout-app: provides a flexible layout to simplify toolbar vs drawer positioning
  • [x] icon: provides a material icon wrapper with support for font-awesome, svg, etc.

Quick Start

Playground

Fork the reference codepen template or one of the vue-mdc-adapter codepen collection or the CodeSandbox

CDN

<head>
  <!-- import reset material icons, fonts and vue-mdc-adapter stylesheets -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" type="text/css">

  <!-- import vue and then vue-mdc-adapter -->
  <script src="https://unpkg.com/vue"></script>
  <script src="https://unpkg.com/vue-mdc-adapter"></script>
</head>
<body>
  <!-- vue mdc markup -->
<body>

Vue CLI

Simple
npm install -g vue-cli
vue init stasson/vue-mdc-adapter-simple my-project
Webpack
npm install -g vue-cli
vue init stasson/vue-mdc-adapter-webpack my-project
cd my-project
npm install
npm run dev

Check out the Getting Started guide for more.