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

@zhangqingcq/vgce

v0.1.5

Published

Vector graphics configure editor. svg组态编辑器。基于vue3.3+ts+element-plus+vite

Downloads

69

Readme

VGCE

Vector graphics configure editor. 矢量图组态编辑器。

Guide

  1. install

      npm i @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1

    or

      pnpm add @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1
  2. change main.ts or main.js

      //main.js or main.ts
      
      import '@zhangqingcq/vgce/dist/style.css'
  3. use editor

       <script setup lang="ts">
         import {SvgEditor} from '@zhangqingcq/vgce'
            
         function preview(d: any) {
           //save d and send it to SvgViewer's data 
         }
       </script>
       <template>
         <SvgEditor @onPreview="preview"/>
       </template>
  4. use viewer

       <script setup lang="ts">
         import {SvgViewer} from '@zhangqingcq/vgce'
       </script>
       <template>
         <SvgViewer :data="xxx"/>
       </template>
  5. custom toolbar

    • copy src/config/ and change as you want

    • put svg files into src/asset/svgs , then file name need to be same with config.name

    • put custom vue components file into src/config/files, then import in src/config/index.ts and export with vueComp

    • PS: you have to install vite-plugin-svg-icons plugin to append your svg to html dom.

      <script setup lang="ts">
        import {SvgEditor} from '@zhangqingcq/vgce'
        import {config} from '@/config'
      </script>
      <template>
        <SvgEditor :customToolbar="config"/>
      </template>
  6. how to use vite-plugin-svg-icons

    • npm i vite-plugin-svg-icons -D or pnpm add vite-plugin-svg-icons -D
    • change vite.config.ts
      // vite.config.ts
      
           import { fileURLToPath, URL } from 'node:url'
           import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
          
           export default defineConfig({
             plugins: [
               xxx,
               createSvgIconsPlugin({
                 iconDirs: [fileURLToPath(new URL('./src/assets/svgs', import.meta.url))], 
                 symbolId: 'svg-[name]',
                 svgoOptions: false,
                 customDomId: '__svg__icons__dom__'//your id, do not use this id!
               })
             ],
             xxx
           })
           ```
    • change main.ts
      // main.ts
      
      import 'virtual:svg-icons-register'
    • PS: if there is error: Cannot find module ‘fast-glob’,then run npm i fast-glob -D or pnpm add fast-glob -D
  7. example

    • download VGCE

    • pnpm i or npm i

    • pnpm dev or npm run dev