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

poi-plugin-leveling-plan

v0.0.5

Published

Leveling plan plugin for poi

Readme

poi-plugin-leveling-plan

Ship leveling plan management plugin for poi.

Features

  • Create and manage ship leveling plans
  • Track experience requirements and progress
  • Support multiple maps and experience calculations
  • Auto-complete plans when ships reach target level
  • Personal stats tracking for map experience
  • Fuzzy search for ship selection
  • Multi-language support (EN, JA, ZH-CN, ZH-TW)

Installation

Method 1: npm Package (Recommended)

# Download the .tgz file, then install it in poi directory
cd /path/to/poi
npm install /path/to/poi-plugin-leveling-plan-x.x.x.tgz

Method 2: Manual Installation (ZIP)

  1. Download and extract the .zip file
  2. Copy the contents of dist/ directory to poi plugins directory:
# macOS / Linux
cp -r dist/* /path/to/poi/node_modules/poi-plugin-leveling-plan/

# Windows
xcopy dist\* \path\to\poi\node_modules\poi-plugin-leveling-plan\ /E /I
  1. Restart poi

Method 3: Development (Source)

# Clone or copy this repository to poi plugins directory
cp -r poi-plugin-leveling-plan /path/to/poi/node_modules/

# Install dependencies
cd /path/to/poi/node_modules/poi-plugin-leveling-plan
npm install

Development

Prerequisites

  • Node.js >= 14
  • npm >= 6
  • poi development environment

Setup

# Install dependencies
npm install

# Build the plugin
npm run build

# Or build everything (transpile + dist + packages)
npm run build:all

Build Scripts

  • npm run build - Full build (transpile + dist)
  • npm run build:transpile - Transpile .es files to .js
  • npm run build:dist - Create dist/ directory
  • npm run build:npm - Create .tgz package
  • npm run build:zip - Create .zip package
  • npm run build:all - Build everything
  • npm run clean - Remove build artifacts

Project Structure

poi-plugin-leveling-plan/
├── index.es                 # Plugin entry point
├── views/                   # React components
│   ├── leveling-plan-area.es
│   └── components/
├── utils/                   # Utility functions
├── services/                # Business logic
├── i18n/                    # Translations
├── assets/                  # Static assets
└── scripts/                 # Build scripts

Building for Distribution

To create distribution packages:

# Install build dependencies
npm install

# Create both .tgz and .zip packages
npm run build:all

This will generate:

  • poi-plugin-leveling-plan-x.x.x.tgz - npm package
  • poi-plugin-leveling-plan-x.x.x.zip - Manual installation package
  • dist/ - Transpiled files ready for use

Dependencies

This plugin uses the following dependencies provided by poi:

  • @blueprintjs/core - UI components
  • react / react-dom - UI framework
  • redux / react-redux - State management
  • redux-observers - Redux observers
  • styled-components - CSS-in-JS
  • classnames - Class name utilities
  • fuse.js - Fuzzy search
  • react-fontawesome - Icons

These dependencies are marked as peerDependencies and will not be bundled with the plugin.

License

MIT