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

kongmq-demo

v0.0.6

Published

> [手把手教你搭建一个基于 react+TS+antd 的组件库(1)](https://github.com/kongmengqian/blog/blob/master/articles/%E6%8A%80%E6%9C%AF%E7%B1%BB/npm/%E6%89%8B%E6%8A%8A%E6%89%8B%E6%95%99%E4%BD%A0%E6%90%AD%E5%BB%BA%E4%B8%80%E4%B8%AA%E5%9F%BA%E4%BA%8Ereact+TS+antd%E7%9A%84%E7%BB

Downloads

6

Readme

package 示例

手把手教你搭建一个基于 react+TS+antd 的组件库(1)

手把手教你搭建一个基于 react+TS+antd 的组件库(2)

概述

  1. package 模板
  2. 技术栈:react+TS+antd
  3. 打包编译工具:webpack
  4. 主要用于 npm 包搭建、发布测试和学习,没有实用价值

使用

npm i kongmq-demo

import App from "kongmq-demo";

const Page = () => {
  return <App />;
};

ReactDOM.render(<Page />, document.getElementById("root"));

开发

初始化

npm install

启动项目

npm run start

编译项目

npm run dev

npm run build

发布项目

  1. 更新 package.json 中的版本号
  2. git 代码提交(add -> commit -> push)
  3. 查看 npm 源,是官方源,则跳过第三步

npm config get registry

  1. 切换到 npm 官方源

npm config set registry=http://registry.npmjs.org

  1. 发布

npm publish

  1. 如果没有登录的话,要 npm login登录一下。
  2. 发布前要 npm run build打包编译一下,该项目在 package.json 添加了 "prepublish": "yarn run build",执行npm publish的时候会去执行编译命令,所以不需要手动去build