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

@itharbors/harbors

v0.1.0

Published

[![NPM](https://img.shields.io/npm/v/@itharbors/harbors)](https://www.npmjs.com/package/@itharbors/harbors) [![License](https://img.shields.io/badge/license-MIT-blue)](LICENSE) [![Node.js](https://img.shields.io/node/v/@itharbors/harbors)](https://nodejs.

Readme

ITHARBORS

NPM License Node.js

📖 This document is in English. For Chinese version, see readme_cn.md.

A desktop application development framework based on Electron, featuring a plugin-based architecture and rich development tools to help developers quickly build cross-platform desktop applications.

📋 Features

  • Plugin Architecture: Based on plugin system, supports dynamic loading and unloading of functional modules
  • Kit Management: Batch management of related plugins through kits, simplifying application configuration
  • Panel System: Built-in panel management, supports registration and management of custom panels
  • Menu System: Flexible menu management, supports dynamic menu contributions
  • Message Communication: Inter-plugin communication through message system
  • Cross-Platform: Based on Electron, supports Windows, macOS, and Linux
  • TypeScript Support: Complete type definitions for a great development experience

🚀 Quick Start

Requirements

  • Node.js >= 16.0.0
  • npm >= 7.0.0
  • Electron >= 20.0.0

Installation

npm install @itharbors/harbors

Usage

import { Editor } from '@itharbors/harbors';

// Initialize the framework
Editor.initialize();

// Load a kit
await Editor.Kit.execute('load', '/path/to/kit');

// Register a plugin
await Editor.Plugin.execute('register', '/path/to/plugin');

// Start a plugin
await Editor.Plugin.execute('load', '/path/to/plugin');

// Call plugin method
const result = await Editor.Plugin.execute('callPlugin', 'plugin-name', 'method', args);

📚 Documentation

Framework Design

Module Design

Service Design

Built-in Plugins Design

📁 Project Structure

├── app/             # Core application
│   ├── dist/        # Compiled output
│   ├── type/         # Type definitions
│   └── .design/      # Design documents
├── plugin/          # Built-in plugins
│   ├── main-menu/    # Main menu plugin
│   ├── message/      # Message plugin
│   └── panel/        # Panel plugin
├── kit/             # Built-in kits
├── workflow/        # Build workflow
└── package.json     # Project configuration

🔧 Development Guide

Development Setup

# Clone the repository
git clone https://github.com/itharbors/harbors.git
cd harbors

# Install dependencies
npm install

# Build project
npm run build

# Run tests
npm run test

Plugin Development

  1. Create plugin directory structure
  2. Write package.json configuration
  3. Implement plugin logic
  4. Register plugin contributions

Kit Development

  1. Create kit directory structure
  2. Write package.json configuration
  3. Configure kit plugin list

🤝 Contributing

We welcome community contributions! See CONTRIBUTING.md for how to participate.

Contribution Process

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

📞 Contact


Made with ❤️ by the ITHARBORS team