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

zswui-v

v0.0.1-1

Published

<p align="center"> <a href="https://winyh.github.io/zswui-v/"> <img width="200" src="https://github.com/winyh/zswui-v/blob/master/public/snowman.svg"> </a> </p>

Downloads

1

Readme

基于 Vue CLI 构建的 UI 组件库.实现了组件开发测试预览,组件文档,打包发布到 npm 一系列功能,详细教程请查看 wiki

使用方法

全局安装

npm install zswui-v --save
// 入口文件引入(main.js)
import zswui from "zswui-v";
import "zswui-v/lib/zswui-v.css";

Vue.use(zswui);

// 组件里使用
<Button>PLG</Button>;

按需加载

需要安装插件 babel-plugin-import

npm install babel-plugin-import --save-dev

按需使用

<template>
    <div>
        <Button>测试</Button>
        <Input></Input>
    </div>
</template>

<script>
import { Button, Input } from "zswui-v";

export default {
  name: "App",
  components: {
    HelloWorld,
    Button,
    Input
  },
};
</script>

引入样式

import "zswui-v/lib/zswui-v.css"

打包发布

npm run lib

npm login

npm publish

组件文档预览

npm run docs:dev

demo(文档待完善)

https://winyh.github.io/zswui-v

[ winyh ], [ zswui-v ] 分别为 github 的 username 和仓库名

贡献代码

组件都在 packages 目录下,单个组件用单个目录存放,在 packages 目录下的 index.js 文件中集中对外抛出

可参考 button 组件

贡献代码规范请查看 wiki

参考组件库

| 组件库 | 说明 | | -------------------------------------------------------- | ---------------------------------- | | Ant Design | 服务于企业级产品的设计体系 | | Rsuite | UI 规范参考* | | Fusion | 构建一套产品化设计系统和物料 | | Element | 基于 Vue 2.0 PC 端网站快速成型工具 | | iview | 基于 Vue.js 的高质量 UI 组件库 | | Vuetify | 偏向于扁平简洁大气风格 | | Bootstrap | 响应式,移动优先的组件库和规范 | | Material-ui | 基于 Material Design 设计系统 | | Semantic-ui | 偏向于扁平简洁大气风格 | | Grommet | 风格偏圆润 | | React-weui | 微信体系 UI 风格 | | React-grid | 布局参考样式 |

License

zswui-v is MIT licensed.