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

hyperscript-rxjs

v1.2.7

Published

A js UI library that uses rxjs to react dom directly.

Downloads

50

Readme

hyperscript-rxjs是一个直接操作DOM的js前端框架库。hyperscript-rxjs具有如下特点:

  • 相比操作DOM模型的命令式代码,hyperscript-rxjs更具声明性。

  • hyperscript-rxjs修复或绕开了很多DOM的历史缺陷。

  • 像knockout一样,hyperscript-rxjs使用MVVM分离视图与视图模型,不同的是hyperscript-rxjs采取通用的rxjs库来观察变化。

  • 像react一样,hyperscript-rxjs操作DOM,与html无关。不同的是hyperscript-rxjs直接操作DOM本身,无虚拟DOM。

  • hyperscript-rxjs采用更新的事件标准addEventListener,不采用属性事件onevent。采用rxjs观察DOM模型的变化,事件通知。

  • 尽管rxjs是技术发展趋势,用户仍然可以基于hyperscript-rxjs实现代码,渐进实现不依赖任何框架的代码。

hyperscript-rxjs学习难度小于react,并且其知识兼容底层的DOM,实用性更强。教程见单独的文件。

依赖库

hyperscript-rxjs is based on rxjs

入门

一个Hello World程序,就像写html一样简单。

import { p } from 'hyperscript-rxjs'
export function hello() { return p('hello world!'); }

本框架API的设计和DOM底层完全一致,即使你将来不使用本框架,也会有益于你的职业生涯。本教程的其余部分将更加详细地涵盖前端库的各种功能以及其它高级用法。

教程

教程及其源代码位于github库xp44mm/hyperscript-rxjs-test中。

相关库

推荐使用如下库,编写更优美的代码:

xp44mm/structural-comparison

xp44mm/deep-rxjs

xp44mm/parse-html