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

@egova-magic/form-design

v1.0.0-alpha.17

Published

> 系统名称

Downloads

3

Readme

egova-starter-template

系统名称

项目结构

┌── build                   # webpack脚本
├── config                  # config
├── src                     # main
│    ├── application 		# 程序启动载入处理逻辑
│    ├── assets     		# 可打包资源文件
│    │    ├── images      	# 图片资源
│    │    ├── styles      	# 样式资源
│    ├── common             # common
│    │    ├── mixins      	# vue多页面共用mixins
│    │    └── utils   		# 页面相关样式,页面内单独引用
│    ├── components 		# 项目中共用components
│    ├── models 		    # 项目中模型实体定义
│    ├── routes 		    # vue-router前端路由
│    ├── services 		    # 项目中共用服务定义
│    ├── store              # store
│    │    └── modules      	# 按模块使用
│    ├── types              # d文件定义
│    ├── views              # 业务模块视图定义
│    ├── settings      		# 全局设置
│    └── index.ts           # 入口
│
├── node_modules            # 依赖
├── public                  # 静态文件
│    ├── index.html 		# 程序启动载入处理逻辑
│    └── favicon.ico     	# 程序图标
├── dist                    # 打包之后的文件
├── .editorconfig	        # 通用编辑器配置
├── .gitignore		        # git忽略提交配置
├── .postcssrc.js           # postcss配置
└── package.json            # package info

注意事项

因为采用了 dll 预打包,所以首次(或核心库版本发生变动),需要执行:

$ npm run dll

默认核心库包含如下内容:

  • vue
    • vue
    • vue-router
  • flagwind - flagwind-core - @egova/flagwind-web - @egova/flagwind-echarts

    自定义核心库在 vendor.js 中配置

如果项目依赖如 axioslodash 等库,只需按照如下方式导入即可:

import axios from "axios";
import lodash from "lodash";

项目使用 stylelint 对样式进行检查,样式代码需要保持规范,建议开发过程中安装并开启 stylelint 插件: stylelint 配置文件.stylelintrc.json中配置内容有: "selector-max-id": 2, // 限定选择器中 id 选择器个数为 2, 建议只用一个 id 选择器 "max-nesting-depth": 5 // 选择器嵌套深度不能超过 5 层, 建议最多不超过 3 层 "selector-max-compound-selectors": 5, // 复合选择器数量限制为 5 order/properties-order: [...] // 限定属性申明的顺序,大致顺序如下

  • 1、定位:position z-index left right top bottom clip等。
  • 2、自身属性:width height min-height max-height min-width max-width等。
  • 3、文字样式:color font-size letter-spacing, color text-align等。
  • 4、背景:background-image border等。
  • 5、文本属性: text-align vertical-align text-wrap text-transform text-indent text-decoration letter-spacing word-spacing white-space text-overflow等。
  • 6、css3 相关属性:contentbox-shadowanimationborder-radiustransform

插件会按规则自动调整某些 css 代码。例如:插件会自动按设定的属性顺序代码中书写的顺序

常用命令

  • npm run dev 进入调试模式,默认地址为 http://localhost:8040
  • npm run lint 使用 tslint 验证源码
  • npm run dll 预打包核心依赖库
  • npm run build 生产打包
  • lint:css 使用 stylelint 验证样式源码规范性
  • lint:css-fix 使用 stylelint 规范样式源码

使用

npm run build 打包

组件库 @egova/component 打包

npm run components:install      更新组件库依赖
npm run publish                 发布组件到npm

单独打包 login 页面

npm run build:login

备注: 发布组件时确认 npm 使用的官方源,且已经登录 npm

更新说明

form-design 使用了 tinymce 富文本编辑器,将 form-design 引入项目时,若遇到富文本编辑器无法显示的问题,需要将./public/static/tinymce 文件夹拷贝到项目中