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

vitarx

v4.0.0

Published

Vitarx is an advanced UI framework that provides engine-level control over the View runtime.

Readme

Vitarx

Vitarx 是一个现代化前端框架,融合了 JSX 语法响应式系统,提供引擎级视图控制能力和完整的前端开发框架。
该包为 Vitarx 框架主入口,整合核心模块,包括响应式系统、运行时核心、DOM 渲染和工具函数。


特性概览

| 特性 | 描述 | |------------------------|----------------------------------------------------| | 🚀 JSX 支持 | 使用熟悉的 JSX 语法构建界面,完整类型支持 | | 🔧 响应式系统 | 提供 refreactivecomputedwatch 等精细响应式 API | | ⚡ 高性能更新 | 精确依赖追踪,避免不必要的渲染 | | 🎯 组件化开发 | 函数组件 + 生命周期钩子,可实现复杂视图控制(如 ForFreeze) | | 🎨 渲染机制灵活 | 多平台渲染适配,浏览器提供完整 DOM 操作能力 | | 💉 依赖注入 | 应用级和组件级 provide / inject | | 📦 内置组件 | SuspenseTransitionFreezeLazyTeleport | | 🎯 指令系统 | 内置 v-showv-htmlv-text,支持自定义扩展 | | 📘 TypeScript 完整支持 | 类型推导完整,开发体验友好 | | 🔌 工具函数库 | 深拷贝、类型检测、防抖/节流、渲染辅助函数等 |

官方文档

查看文档

安装

# 使用 npm
npm install vitarx

# 使用 yarn
yarn add vitarx

# 使用 pnpm
pnpm add vitarx

快速开始

import { createApp } from 'vitarx'
import App from './app'
// 创建应用实例
const app = createApp(App)

// 挂载到 DOM 元素
app.mount('#app')

导出内容

该包整合了以下模块的所有功能:

许可证

MIT