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

@uepm/example-plugin

v1.0.5

Published

Example Unreal Engine plugin distributed via NPM

Downloads

563

Readme

@uepm/example-plugin

Example Unreal Engine plugin distributed via NPM, demonstrating the UEPM (Unreal Engine Package Manager) workflow.

Installation

npm install @uepm/example-plugin

Prerequisites

Your Unreal Engine project must be initialized for UEPM:

npx @uepm/init

What's Included

This plugin demonstrates:

  • Basic plugin structure - Standard Unreal Engine plugin layout
  • NPM distribution - Plugin distributed via NPM registry
  • Engine compatibility - Semver-based engine version requirements
  • C++ module - Simple module with logging functionality
  • Plugin descriptor - Proper .uplugin file configuration

Plugin Structure

@uepm/example-plugin/
├── ExamplePlugin.uplugin     # Plugin descriptor
├── package.json              # NPM package configuration
├── Source/                   # C++ source code
│   └── ExamplePlugin/
│       ├── Private/
│       │   ├── ExamplePlugin.cpp
│       │   └── ExamplePluginModule.cpp
│       ├── Public/
│       │   ├── ExamplePlugin.h
│       │   └── ExamplePluginModule.h
│       └── ExamplePlugin.Build.cs
├── Resources/                # Plugin resources
│   └── Icon128.png
└── README.md

Engine Compatibility

  • Unreal Engine: 5.0.0 or later (< 6.0.0)
  • Platforms: All platforms supported by Unreal Engine

Usage in Unreal Engine

  1. Install the plugin via NPM
  2. Open your project in Unreal Engine
  3. Go to Edit > Plugins
  4. Find "Example Plugin" in the list
  5. Enable the plugin
  6. Restart the editor when prompted

The plugin will log a message when loaded:

LogExamplePlugin: Example Plugin has been loaded!

Development

This plugin serves as a template for creating your own NPM-distributed Unreal Engine plugins. Key features:

  • Proper package.json with unreal.engineVersion field
  • Standard plugin structure following Unreal Engine conventions
  • Build configuration with proper module dependencies
  • NPM publishing ready with correct file inclusions

Creating Your Own Plugin

Use this plugin as a starting point:

  1. Copy the plugin structure
  2. Rename files and classes
  3. Update package.json with your plugin details
  4. Implement your plugin functionality
  5. Publish to NPM

License

MIT