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 🙏

© 2026 – Pkg Stats / Ryan Hefner

g-engine

v0.1.1

Published

## 抛弃px,采用em >抛弃px描述,用em代替来拥有响应式渲染的能力,[em在支持ie8](https://caniuse.com/#search=rem). 1. 给引擎一个大小`[1920,800]`来描述画布,标识画布是1920*800的颗粒度组成,具体呈现大小取决于容器宽度[在容器宽度为1920px的情况下,1颗粒度为1px]。

Downloads

6

Readme

响应式渲染引擎

抛弃px,采用em

抛弃px描述,用em代替来拥有响应式渲染的能力,em在支持ie8.

  1. 给引擎一个大小[1920,800]来描述画布,标识画布是1920*800的颗粒度组成,具体呈现大小取决于容器宽度[在容器宽度为1920px的情况下,1颗粒度为1px]。

interaction = null; interactionController() { const flag = { canMove: false }; //点击组件的位置 const offsetPx = { x: 0, y: 0 }; let moveLocationPx = { left: 0, top: 0, }; let selectedComponentId = ''; let hasMove = false; //上次鼠标释放事件 let prevSingleClickTimeStamp = 0; //移动失败的次数 let numberOfMoveFail = 0; //点击时的事件对象 let clickE; return { tryStartMove: (e) => { const { target } = e; if (target.className === 'component') { clickE = e; const { componentsData, moveComponentLayer } = this.state; const { clientX, clientY, offsetX, offsetY, target: { id } } = e; selectedComponentId = id; const selectedComponentIndex = this.getComponentIndexById(id); if (selectedComponentIndex > - 1) { const { x, y } = getViewOffet(); const { rotate, size } = getKeysWithMap(componentsData.get(selectedComponentIndex), ['rotate', 'size']); flag.canMove = true;

                    offsetPx.x = rotate ? offsetX / Math.cos(rotate) : offsetX;
                    offsetPx.y = rotate ? offsetY / Math.cos(rotate) : offsetY;
                    moveLocationPx.left = clientX - offsetPx.x - x;
                    moveLocationPx.top = clientY - offsetPx.y - y;

                    this.setState({
                        moveComponentLayer: setKeysWithMap(moveComponentLayer, {
                            visible: true,
                            size,
                            rotate
                        }),
                    });
                }
            }
        },
        tryMove: (e) => {
            if (flag.canMove) {
                const { clientX, clientY } = e;
                const { x, y } = getViewOffet();
                const next = {
                    left: clientX - offsetPx.x - x,
                    top: clientY - offsetPx.y - y
                };
                //移动的幅度大于2才算移动
                if (!isDiffInTheRange(moveLocationPx.left - next.left, 2) || !isDiffInTheRange(moveLocationPx.top - next.top, 2)) {
                    hasMove = true;
                    moveLocationPx = next;
                    this.setState({
                        moveFlag: Date.now(),
                    });
                }

            }
        },
        tryStopMove: (e) => {
            if (flag.canMove) {
                const now = Date.now();
                const { moveComponentLayer } = this.state;
                const { actions } = this.props;
                if (hasMove) {
                    numberOfMoveFail = 0;
                    actions.move([
                        {
                            id: selectedComponentId,
                            type: 'move',
                            keyPath: ['location'],
                            data: pxConverPointWithObjecy(moveLocationPx)
                        }
                    ]);
                } else {
                    numberOfMoveFail += 1;
                }


                this.setState({
                    moveComponentLayer: moveComponentLayer.set('visible', false)
                })
                hasMove = false;
                flag.canMove = false;
                if (numberOfMoveFail >= 2 && now - prevSingleClickTimeStamp <= 200) {
                    this.interaction.tryDoubleClick(clickE);
                }
                prevSingleClickTimeStamp = now;
                //连续俩次 hasMove 为false 且 间隔小于 100ms 触发双击
            }
        },
        tryDoubleClick: (e) => {
            const { target, target: { id } } = e;
            if (target.className === 'component') {
                const type = this.getComponentDataById(id).get('type');
                if (type === 'view.text') {
                    this.setState({
                        doubleClickLayer: setKeysWithMap(this.state.doubleClickLayer, {
                            visible: true,
                            componentData: this.getComponentDataById(id)
                        }),
                    });
                }
            }
        },
        getMoveLocation() {
            return moveLocationPx;
        }
    }
}