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

kernelo

v3.1.4

Published

<h1>The Hybrid Core Framework for Node.js</h1> <br> Kernelo — это гибридное ядро для Node.js, создающее единую экосистему, где каждый контейнер может быть автономным приложением, модулем или даже проектом на другом фреймворке (Express, Fastify, Nest, и

Readme

npm install kernelo # установка 

# установленную основу надо переместить в корень проекта

npm link # регистрация глобального ярлыка

kernelo start -p 80 # запуск сервера на порте 80

kernelo ping # проверка сервера
Request
   ↓
HTTP Server
   ↓
Kernel (ядро)
   ├─ Parsing Body
   ├─ Adapter Logic
   ├─ Router Logic
   ├─ Middleware Logic
   ├─ Containers Logic
   ├─ DB Logic
   └─ Configurations
   ↓
Routing
   ├─ Register routes
   ├─ Set init params
   ├─ List routes
   └─ Forwarding
   ↓
Dispatcher
   ├─ Init protocol
   ↓
Adapter
   ├─ Include container
   ↓
Response
/project
│
├── /containers
│   ├── users/
│   │   └── index.js  ← Express container
│   ├── payments/
│   │   └── index.js  ← Fastify container
│   └── analytics/
│       └── index.js  ← Nest container
│
├── /global
│   └── kernel.js
│
└── index.js

| Возможность | Описание | | ------------------------------- | ------------------------------------------------------------------------------- | | Контейнерная архитектура | Изолированные модули в /containers, управляемые ядром. | | Forwarding Protocol | Маршрутизация запросов между контейнерами. | | Hybrid Framework Support | Поддержка Express, Fastify, Nest и других фреймворков внутри контейнеров. | | Central Kernel Logic | Единая точка контроля для конфигураций, роутинга и адаптации. | | Plug & Play Containers | Добавление/удаление контейнеров без перезапуска ядра. | | Dynamic Dispatching | Автоматическая маршрутизация по схеме Kernel → Router → Dispatcher → Adapter. |