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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@a417420427/mini-qiankun

v0.1.4

Published

A mini qiankun-like micro frontend loader

Readme

@a417420427/mini-qiankun

📖 语言版本: English

🧩 一个极简版的微前端加载器, 方便开发者更好的理解qiankun,使用 TypeScript 构建,适用于学习、实验或轻量级场景。

✨ 特性

  • 📦 支持基于 HTML 的子应用加载
  • 🧰 通过 Function('sandbox', code) 实现 JavaScript 沙箱隔离
  • 💥 支持 bootstrap / mount / unmount 生命周期
  • ⚡ 无额外依赖,轻量快速
  • 🎯 可配合 Vite、React、Vue 等任意前端框架使用

📦 安装

npm install @a417420427/mini-qiankun

🚀 使用方法

  1. 引入并加载子应用
import { loadMicroApp } from '@a417420427/mini-qiankun';

loadMicroApp({
  name: 'react-subapp',
  entry: 'http://localhost:3001',
  container: '#subapp-container'
});

  1. 示例项目 完整用例请查看 👉 mini-qiankun-demo/ 该示例包含:
  • 主应用:Vue + Vite
  • 子应用 1:HTML + JS
  • 子应用 2:React + Vite

📁 项目结构


mini-qiankun/
├── src/
│   ├── global-state.ts  # 全局状态管理模块
│   ├── loader.ts        # 核心逻辑:loadMicroApp 实现
│   ├── sandbox.ts       # JS 沙箱:Function 封装
│   └── index.ts         # 对外导出的 API
├── dist/                # 构建产物(UMD + ESM)
├── package.json
├── vite.config.ts       # Vite 构建配置
├── tsconfig.json
└── README.md