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

@bizcharts/radar-grid-circle

v0.0.3

Published

Simple Radar Circle Grid

Downloads

27

Readme

区块介绍

bizcharts 区块介绍

预览图

给个预览图

命令

具体开发流程顺序如下

启动 & 调试

fie start

编译

fie build

发布

发布日常

fie publish d

发布线上

fie publish

只发布 npm 包

fie publish package

同步到 fusion market

// 当未输入fusion的token时,会提示输入token
fie sync d // 同步到 fusion market 的日常环境
fie sync o // 同步到 fusion market 的线上环境

// 清除本地的 fusion market 的 token信息
fie sync clear

目录结构

.
├── README.md
├── index.html
├── demo // 本地调试目录
├── lib // babel 编译 src 后输出的目录
├── db.json // 给 ice 打包用的,开发者无需关心
├── package.json
├── src // 源代码
└── webpack.config.js // webpack 配置

⚠️ 注意事项

关于必填参数

需要手动填写的参数(package.json 和 db.json 中都需要填,并保持一致):

  • "name": 包名,
  • "title": demo 名,
  • "description": demo 描述,
  • "categories": array,类目用于搜索,必填两项:'bizcharts'和官网右侧导航栏对应的展示区,如'其他图表'、'折线图 '、 '概览'等
 "categories": [
    "bizcharts",
    "其他图表"
  ],
  • "screenshot": 截图,一般情况发布时会自动截图,如果不成功需要手动截图后填入图片链接

关于发布

1.只有 fie publish d 不会发布 npm 包,其他的 fie publish xxx 都会发布 npm 包。

2.由于 npm 包需要被外网用户下载,所以发到的是 公共 registry。因此,需要你本地登录了 npm 账号,可以使用 npm whoami 来查看当前登录的账号,没登录的话,使用 npm login 登录。没 npm 账号的点 这里 申请,另外只有验证过邮箱的 npm 账号才能发包。

3.bizcharts 物料包 name 统一为 @bizcharts/xxx,npm 没加入 scope 组的,请联系@昔夜。

关于区块样式

由于区块会被应用引用,所以必须做到开箱即用,无需做额外的配置,因此,在区块样式这块使用的是 React inline style 方案。当然,如果你觉得直接写 style 有部分限制的话,你可以使用 Radium 方案。