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

hightek-plugin

v0.0.4

Published

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

Downloads

1

Readme

Vue 3 + Vite

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Content

BaseFlex:

This component is intended to simplify the positioning of elements in a view. It can be considered as a "wrapper" component that adds display:flex and makes use of css attributes to modify the positioning of child elements.

Props and attributes that the component receives:

  • gap: allows defining the space that will be between child elements.

  • as: Allows to define which html element will occupy to render in the dom.

  • column: Adds the flex-direction property: column

  • {x|y}-{direction}: This attribute will allow to define in which position (x or y) of the flex will be the child elements.

  • grow: Adds the flex-grow property: 1

  • wrap: Adds the flex-wrap property: wrap.

  • Directions that are taken in each axis: {x|y}-start {x|y}-end {x|y}-center {x|y}-space-between {x|y}-space-around

BaseGrid:

  • Grid: A set of intersecting horizontal and vertical lines that define columns and rows. Elements can be placed in the grid within these column and row lines. Using class="span-#" you can create the desired columns or implement them from <style>.

FormRules:

This component has the purpose of creating the validations of the information entered in a specific field in a form against the established rule. Using :rules="[$formRules. "RULE"]".

Current FormRules in the project

  • required: The field must be required
  • isNumberValid: It is a number
  • isNumberPositive: It is a positive number
  • isNumberIntPositive: It is a positive integer
  • isNumberInt: It is an integer
  • isEmailValid: It is an email format
  • isPasswordSafeValid: If the password is secure and meets the minimum requirements
  • isNumberAccountValid: Valid bank account number
  • isNumberCardValid: Valid card number
  • isCLABEValid: Valid CLABE number
  • isRFCValid: Valid RFC format
  • isCURPValid: Valid CURP format
  • isURLValid: Format of a valid URL
  • isCodeZipValid: Valid zip code format