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

jupiter-anui

v0.0.1-alpha01

Published

该项目是基于 [Create React App](https://github.com/facebookincubator/create-react-app).

Downloads

2

Readme

该项目是基于 Create React App.

  • public/index.html 项目模板文件;
  • src/index.js 项目入口文件.
  • node(>=8.9.4)

运行:

npm start

启动开发模式 在浏览器打开 http://localhost:3000 .

npm run build

编译项目到build文件夹

浏览器支持情况

默认使用react最新版本

你可以打开react文档到(https://reactjs.org/docs/react-dom.html#browser-support) 获取更多react对浏览器支持信息.

技术栈

[email protected] [email protected] [email protected] [email protected] [email protected] [email protected] sass

页面生成配置项说明:

{
    "system": "/trade-credit/", // 系统文件夹名称
    "folder": "test-customer",// 当前业务文件夹名称
    // 首页分为三种类型:配置平台(index)、带模糊搜索的(index2)、树形(indexTree)
    "files": ["indexTree", "scss", "modal", "api"],
    "apiKey": "tmColumns", // 后端接口前缀(通常是bean名称)
    "listCfg": { // 首页配置项
        "tableName": "TM_COLUMNS", // index2需要
        "searchKey": "tmColumns",// 查询列表是传入的bean名称
        "searchs": [{// index 需要,搜索条件配置
            "type": "text",
            "name": "username",
            "label": "用户名"
        }],
        "columns": [{ // index 列配置方式
                isIndex: true
            }, {
                title: "用户id",
                dataIndex: "userid"
            }, {
                title: "操作",
                dataIndex: "id",
                key: "action",
                actions: ["edit", "delete"]
            }],
        "columns": {// index2 配置方式
            start: [{ // 列配置
                isIndex: true
            }],
            end: [{
                title: "操作",
                dataIndex: "id",
                key: "action",
                actions: ["edit", "delete"]
            }]
        },
        fields: [{ // indexTree时需要,右侧详细信息
            name: "userid",
            label: "用户id"
        }]
    },
    "formCfg": { // 更改modal表单配置项
        "cols": 1,// 2时为两列排列
        "antdComp": [],// 需要引入的antd 组件
        "jruiComp": ["JRTextbox"],// 需要引入的jrui组件
        "fields": [{ // 表单项
                type: "text",
                label: "文本",
                name: "userid"
            }, {
                type: "date",
                label: "时间",
                name: "dateField"
            },
            {
                type: "int",
                label: "数字",
                name: "num"
            },
            {
                type: "select",
                label: "下拉框",
                name: "selectfield"
            }
        ]
    }
}
``` javascript