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

vite-plugin-autoclass

v1.2.0

Published

Auto generate post-css style class for your project

Downloads

19

Readme

https://github.com/tarzandong/autoCSSClass.git This is a vite pluging for vue/React project.

With it you can add some post-css style class in template tag. like follow code: <div class="w88"></div>

Then the plugin will generate the css class '.w88 { width: 88px }' in '/src/auto.css' automaticly. it will be loaded also automaticly.

1 How to use the pluging.

//vite.config.ts
...
import {autoClassPlugin} from 'vite-plugin-autoclass'

export default defineConfig({
  plugins: [
    vue(), 
    autoClassPlugin({
      mainjsFile: 'main.ts',
      cssFile: ...,
      classTypes: {
        myw: {key: 'width', unit: 'px'}
      },
      mainUnit: ...
    })
  ],
  ...
)}
//foo.vue
...
<template>
  <div class="mb20">I'm a margin-bottom 20px div</div>
</template>
...

2 Config

You can use options param. Ofcause you can use it without any param like 'plugins: [vue(), autoClassPlugin()]', then the plugin will use default options as bellow:

  const defaultOptions = {
    cssFile : 'auto.css',  //the generate css file name, the path will be '/src'
    mainUnit: 'px', //you also can set the param to be 'rem' or 'em'
    mainjsFile: 'main.js', //the Vue/React entry file name
    classTypes: {
      w: {key: 'width', unit},
      h: {key: 'height', unit},
      lh: {key: 'line-height', unit},
      minh: {key: 'min-height', unit},
      minw: {key: 'min-width', unit},
      maxh: {key: 'max-height', unit},
      maxw: {key: 'max-width', unit},
      vw: {key: 'width', unit:'vw'},
      vh: {key: 'height', unit: 'vh'},
      pw: {key: 'width', unit: '%'},
      ph: {key: 'height', unit: '%'},
      emw: {key: 'width', unit: 'em'},
      remw: {key: 'width', unit: 'rem'},
      emh: {key: 'height', unit: 'em'},
      remh: {key: 'height', unit:'rem'},
      p: {key: 'padding', unit},
      pl: {key: 'padding-left', unit},
      pr: {key: 'padding-right', unit},
      pt: {key: 'padding-top', unit},
      pb: {key: 'padding-bottom', unit},
      m: {key: 'margin', unit},
      ml: {key: 'margin-left', unit},
      mr: {key: 'margin-right', unit},
      mt: {key: 'margin-top', unit},
      mb: {key: 'margin-bottom', unit},
      fs: {key: 'font-size', unit},
      bdr:{key: 'border-radius', unit},
      bdrtl:{key: 'border-top-left-radius', unit},
      bdrtr:{key: 'border-top-right-radius', unit},
      bdrbl:{key: 'border-bottom-left-radius', unit},
      bdrbr:{key: 'border-bottom-right-radius', unit},
      op: {key: 'opacity', unit:'%'},
      z: {key: 'z-index', unit:''},
      fl: {key: 'flex', unit: ''},
      lft: {key: 'left', unit},
      rgt: {key: 'right', unit},
      top: {key: 'top', unit},
      btm: {key: 'bottom', unit},
      gap: {key: 'gap', unit}
    }
  }

For example: class="mb20" => .mb20 { margin-bottom: 20px }. you can check the classType option and will find mb means the css property margin-bottom.

3 Notice

  1. For match correct class/classname, please make sure the correct spell in '.vue/.jsx' for these words bellow: <template>, </template>, class=, className= If those words have any empty space ' ' inserted in, will miss-match some css class.

  2. Please make sure there hasn't another file which name is same with mainjsFile in your project.

  3. Please do not modify the auto generated css file to avoid some css class missed and format mistake.