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

rcc-plugin

v0.1.5

Published

RCC瑞达恒组件库

Downloads

15

Readme

rcc-plugin

RCC瑞达恒组件插件库

文件目录

examples

存放 预览示例的网站 代码

docs 存放Markdown文档,用于生成文档网站

mobile 移动端示例网站样式&入口

pc pc端示例网站样式&入口

demos 组件示例,弃用(改为通过读取Markdown分析生成对应demo)

assets 示例网站样式&js文件

packages

用来存放 组件 的代码

config

用来存放 一些配置(Markdown配置文件等)

src

npm包入口,存放样式文件&中英文文件

util

封装的内部使用的插件、js

plugins

存放插件(供外部使用,如导出)

配置

vue ui 进入vue-cli图形操作界面(vue-cli3才支持)

npm run serve:example 本地跑示例文档

npm run build 打包packages(实际使用的组件)

npm run build 打包example(文档)

新增组件

1.packages下根据格式添加组件

添加文件夹,文件夹名称为组件名称

文件夹中添加组件.vue文件和入口文件index.js

index.js格式,可以根据需要自己在install中添加其他内容(如自定义指令等)

import $组件英文名称 from $组件路径

$组件英文名称.install = function (Vue) {
  Vue.component($组件英文名称.name, $组件英文名称)
}

export default $组件英文名称

2.example中添加对应组件的文档

docs目录中添加对应的Markdown(.md)文件,格式为

# $组件英文名称 $组件中文名称
<!-- {.md} -->
---
<!-- {.md} -->
## $用法介绍
  ::: demo
  $介绍
  ```html
  $代码内容
  ```html
## Api
### Transfer props(可设置参数)
### Transfer events(可使用事件)
### Transfer slot(可嵌入模块)
:::

route中添加对应的路由配置 在nav.config.json中参考格式添加 name是对应文档的路由名称(根据这个名称去取对应的文件),path是对应文档在浏览器上的链接,isMobile指是否有对应移动端样式,desc是该文档的描述