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

wn-tech-common

v1.6.5

Published

``` javascript |-- lib |-- components | |-- criticaldeal --危急值处理 | | |-- api.js --接口api | | |-- CriticalDealDialog.vue --危急值处理弹窗界面 | | |-- README.md --使用说明 | |--

Downloads

148

Readme

目录结构

|-- lib
    |-- components
    |   |-- criticaldeal                --危急值处理
    |   |   |-- api.js                  --接口api
    |   |   |-- CriticalDealDialog.vue  --危急值处理弹窗界面
    |   |   |-- README.md               --使用说明
    |   |-- reportresultdialog          --报告结果弹窗
    |   |   |-- api.js                  
    |   |   |-- reportResultDialog.vue
    |   |-- reportresulttrend           --趋势图
    |   |   |-- AddRealtiveItem.vue
    |   |   |-- ReportResultTrend.vue
    |   |   |-- TrendAllResult.vue
    |   |   |-- api
    |   |       |-- api.js
    |   |-- selectreason                --选择原因
    |       |-- api.js
    |       |-- selectReason.vue
    |-- enums
        |-- KeyCode.js
        |-- OpreateType.js
        |-- PrintMode.js
        |-- resultType.js

如何使用

1.文件-package.json

   "wn-tech-lims-common-components": "^1.0.1"

2.文件-webpack.base.conf.js

resolve: {
    extensions: ['.js', '.vue', '.json'],
    alias: {
      ……
      '@techLimsCommon': resolve('node_modules/wn-tech-lims-common-components/lib'),
      ……
    }  
  },



  ……

  module: {
    rules: [
      {
        test: /\.js$/,
        loader: 'babel-loader',
        include: [resolve('src'), 
                  resolve('test'),
                  resolve('node_modules/wn-tech-ui/src'),
                  resolve('node_modules/wn-tech-common/lib'),
                  resolve('node_modules/wn-tech-lims-common-components/lib')
                ]
      },
      ……

3.需要用到的组件示例

//危急值处理弹框
CriticalDealDialog:() => import('@techLimsCommon/components/criticaldeal/CriticalDealDialog')
//或者 
import CriticalDealDialogfrom '@techLimsCommon/components/criticaldeal/CriticalDealDialog';

维护规范

1、任何公共组件需要在子工程内调试完毕,才允许提取到本库。
2、提取到本库后,需要提前进行验证,否则不允许发布到npm。
3、如果添加组件,参考《生成目录结构说明.txt》的方式进行目录生成,并添加说明
4、子工程使用说明,需要继承LIS6.0的业务工程配置,详见上文