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

kaima-loader

v1.0.1

Published

开码平台配置解析与插件组装工具

Readme

kaima-loader

开码平台配置解析与插件组装工具。支持 source 模式(从 Git 拉取全代码)和 plugin 模式(插件组装)。后续可发布到 npm。

安装

npm install -g kaima-loader
# 或本地开发:cd 10-code/kaima-loader && npm install -g .

使用

目标项目只需 kaima-loader.json,在项目目录执行:

kaima-loader install
kaima-loader start

多子项目:使用 projects 数组支持前后端分离、多终端。Schema 引用:在配置中加 $schema 指向 schemas/kaima-loader.schema.json 可获得 IDE 智能提示。两种构建模式source(Git 全代码)、plugins(插件组装)。详见 04-使用指南.md

命令

kaima-loader install   # 拉取并构建
kaima-loader start     # 一键启动
kaima-loader pack      # 打包插件
kaima-loader release   # 发布(需 KAIMA_GIT_TOKEN)

命令

| 命令 | 说明 | |------|------| | install | 解析 kaima-loader.json,拉取所有依赖插件,构建到指定目录 | | start | 一键启动:mvn install、npm install、java -jar、npm run 等 | | pack | 将当前项目打包成插件(去掉依赖,只保留自身) | | release | 发布到 release 分支,需 Git 授权 |

配置

根目录需有 kaima-loader.json,示例:

{
  "name": "my-app",
  "version": "1.0.0",
  "tech": "java",
  "registry": "file",
  "registryUrl": "./plugins",
  "plugins": [
    { "name": "plugin-core-java", "version": "1.0.0" },
    { "name": "plugin-member", "version": "1.0.0" }
  ],
  "pluginDependencies": {
    "plugin-member": ">=1.0.0",
    "plugin-core-java": ">=1.0.0"
  }
}

文档

  • 需求文档:00-doc/kaima-loader-design/01-需求文档.md
  • 设计文档:00-doc/kaima-loader-design/02-设计文档.md
  • 测试文档:00-doc/kaima-loader-design/03-测试文档.md