Gathering detailed insights and metrics for qmantd-simple
Gathering detailed insights and metrics for qmantd-simple
npm install qmantd-simple
Typescript
Module System
Node Version
NPM Version
28.9
Supply Chain
57.6
Quality
69.9
Maintenance
50
Vulnerability
98.2
License
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
1,784
Last Day
1
Last Week
12
Last Month
17
Last Year
89
Minified
Minified + Gzipped
Latest Version
0.1.2
Package Id
qmantd-simple@0.1.2
Size
11.54 kB
NPM Version
3.3.6
Node Version
5.0.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
500%
12
Compared to previous week
Last month
1,600%
17
Compared to previous month
Last year
-10.1%
89
Compared to previous year
├── README.md
├── package.json
├── dist
│ └── qmui-simple.js
├── src
│ ├── component
│ │ ├── QmIcon
│ │ │ ├── index.js
│ │ │ └── style
│ │ │ └── index.less
│ │ └── style
│ │ └── theme.less
│ └── index.js
npm install qmui-simple
import {QmIcont} from 'qmui-simple'
import {QmIcon} from 'qmui-simple/src/compnent/QmIcon’
import 'qmui-simple/src/style/theme.less’
├── README.md 说明文档
├── .babelrc 配置babel的文件
├── .gitignore 配置git不需要提交的文件或者目录
├── dist 执行npm run dist,webpack会把src中入口文件index.js打包到该目录下
│ └── qmui-simple.js 向外面暴露一个统一的js,供别人使用
├── example 本地例子项目为了本地开发方便
│ ├── app.js 可以引用src下面自己开发的组件
│ └── index.js 例子项目的入口文件,主要作用是把react组件渲染到页面上
├── index.html
├── package.json
├── server.js 本地server,为了本地开发写的简易的server
├── src 源码目录
│ ├── component 组件目录
│ │ ├── QmIcon 组件名称
│ │ │ ├── index.js 组件入口文件
│ │ │ └── style 组件的样式目录
│ │ │ └── index.less 组件的样式入口文件
│ │ └── style 公用的样式目录
│ │ └── theme.less
│ └── index.js 源码js入口文件,目的是把所有的组件统一打包出去
├── webpack.dev.config.js 本地开发npm run start会执行该文件
└── webpack.production.config.js 发布的时候npm run dist 会执行该文件
No vulnerabilities found.
No security vulnerabilities found.