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 🙏

© 2024 – Pkg Stats / Ryan Hefner

pcv4lib

v1.0.15

Published

A PITHY EXCITING DESCRIPTION FOR YOUR COMPONENT.

Downloads

49

Readme

Vuetify Extension Template with TypeScript

This repository contains a template for building Vue.js components that extend components from the Vuetify UI library.

The Reason for this Template

In July 2019, Vuetify released version 2.0 (Arcadia) of a library of UI components that closely implement the Material Design specification. Among many other improvements, Vuetify 2.0 featured a complete rewrite of all its components using TypeScript. TypeScript is a superset of JavaScript that implements a rigorous and robust type-checking system. TypeScript's benefits include:

  • Enhanced code quality and understandability
  • More powerful tooling, allowing things like code completion
  • Type inference, which can help developers catch bugs earlier
  • Access to all of the features of ESNext
  • Ability to compile down to a version of JavaScript that runs in all browsers

Despite these benefits, it is still quite challenging to setup a development environment that makes it easy for developers to build extensions to Vuetify 2.0 components that takes full advantage of the benefits of its TypeScript implementation.

This template was created to make it much easier for developers to build high-quality extensions for Vuetify 2.0 that will benefit the entire extended community of developers who use Vuetify.

Instructions for Use

In order to use this template, you will need to follow the following steps (detailed explanation follows):

  1. Make sure you have accounts with the following entities:
  2. Install yarn
  3. Install global packages with yarn:
  4. Create a new blank repo on GitHub
  5. Download a zipped copy of this repo
  6. Unzip to a local directory on your computer
  7. Rename and/or update the following files:
    • package.json
    • LICENSE
    • README.md
    • src/
      • index.ts
      • YourComponent.ts
      • YourComponent.sass
      • __tests__/YourComponent.spec.ts
    • dev/
      • index.js
      • App.vue
  8. Install default dependencies with yarn
  9. Initialize a git repository in your customized directory
  10. Make your first commit
  11. Run your first tests
  12. Do your first build
  13. Start the dev server for the first time
  14. Build your extension
  15. Release it!
  16. Publicize, support, and maintain

Questions, Comments, Bug Reports, etc.

Comments, questions, pull requests, and bug reports are very welcome. Please submit an issue via the Issues tab above.

Have fun!