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

nclient-microfront-pure

v0.0.4

Published

nclient-micro-front的纯净版去除了大部分依赖于window的功能 保留功能: convertTree, validator, DataHandle, Handle, keyFrame, register, displayHandle, displayData, rgData, rgHandle, EventBus, websocketFrame, httpFrame

Downloads

7

Readme

#nclient-micro-front-pure nclient-micro-front的纯净版去除了大部分依赖于window的功能 保留功能: convertTree, validator, DataHandle, Handle, keyFrame, register, displayHandle, displayData, rgData, rgHandle, EventBus, websocketFrame, httpFrame

###install npm install --save nclient-microfront-pure

##usage import {validator,...} from 'nclient-microfront-pure'

##frame(dataFrame, stateFrame, controlFrame, commonFrame) 增加片段监听

  1. push(keys, obj, logStr) 推送事件
  2. addHandler(handlerName, keys, callback) 增加监听
  3. removeHandler(handlerName, key) 删除监听
  4. getHandler(handlerName, key, obj) 获取监听
  5. before(key, callback) 在监听前回调
  6. after(key, callback) 在监听后回调

convertTree 树状图转化

convertTree(data, isChildFn, contentFn, idFun, getChildrenFun) data: 数据 isChildFn: 是否是子节点的方法 contentFn: 内容的生成方法 idFun: id的生成方法 getChildrenFun: 获取子节点的生成方法

DataHandle 数据类型的父类

  1. before(key, callback) 在数据处理事件前回调
  2. after(key, callback) 在数据处理事件后回调
    样例: class Class extends DataHandle{ constructor(name) }

Handle 事件类型的父类

  1. before(key, callback) 在事件前回调
  2. after(key, callback) 在事件后回调
    样例: new Handle({name:''})

EventBus(keyFrame, websocketFrame, httpFrame) 事件监听

  1. push(keys, obj, logStr) 推送事件
  2. addHandler(handlerName, keys, callback) 增加监听
  3. removeHandler(handlerName, key) 删除监听
  4. getHandler(handlerName, key, obj) 获取监听
  5. before(key, callback) 在监听前回调
  6. after(key, callback) 在监听后回调

register(displayHandle, displayData) 请不要单独使用

对象注册机制,实现在DataHandle, Handle中

  1. install 注册对象
  2. display 展示对象
  3. displayAll 展示所有对象
  4. displayHandle 展示事件类型对象
  5. displayData 展示数据类型对象