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

node2rpm

v1.0.2

Published

Package Node app into RPM

Downloads

292

Readme

node2rpm

Node package that wraps the rpmbuild CLI to build RPMs from JavaScript/TypeScript (e.g. packaging Node apps).

Requirements: Node.js >= 22. The system rpmbuild binary must be installed.

Prerequisites

Install the RPM toolchain on your system. The package invokes the rpmbuild command.

  • macOS: brew install rpm
  • Fedora / RHEL: rpm-build is usually present; if not: dnf install rpm-build
  • Debian / Ubuntu: apt install rpm

Installation

The package is published on the public npm registry as node2rpm.

npm install --save node2rpm

Usage

The package is ESM-only. Use async/await or .then().

Simple: build() (promise)

import rpm from 'node2rpm';

const ctx = await rpm.build({
  name: 'myproject',
  version: '0.0.1',
  summary: 'My Project RPM',
  description: 'RPM for my Node project',
  files: {
    '/var/local/myproject': ['lib/**', 'node_modules/**'],
    '/usr/bin': ['bin/**'],
  },
  release: 1,
  url: 'https://myproject/',
  license: 'GPL+',
  group: 'Development/Tools',
  cwd: '.',
  rpmRootDir: './rpmbuild',
});

console.log('RPM built:', ctx.rpms?.rpm);

With RpmBuilder (events / multiple builds)

import { RpmBuilder } from 'node2rpm';

const builder = new RpmBuilder();
builder.on('message', (phase, ...args) => console.log(phase, ...args));

const ctx = await builder.build({
  name: 'myproject',
  version: '0.0.1',
  summary: 'My Project RPM',
  description: 'RPM for my Node project',
  files: {
    '/var/local/myproject': ['dist/**', 'node_modules/**'],
    '/usr/bin': ['bin/**'],
  },
  release: 20250302120000,
  rpmRootDir: './rpmbuild',
});

API

build(options: BuildOptions): Promise<BuildContext>

Builds an RPM. Options:

| Option | Type | Description | | --------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------- | | name | string | Package name | | version | string | Version | | summary | string? | Short summary | | description | string? | Long description | | files | object | Map of install path → glob(s). Values can be a string, string[], or { path, chmod? }. Use !pattern to exclude | | release | number? | Release number (default: 1) | | installScript | string[]? | Script lines for %install (e.g. chown); %{buildroot} is supported | | url | string? | Project URL | | license | string? | License (default: GPL+) | | group | string? | RPM group (default: Applications/Internet) | | requires | string[]? | Requires lines | | cwd | string? | Working directory for globs (default: .) | | rpmRootDir | string? | rpmbuild top dir (default: ~/rpmbuild) | | buildArch | string? | e.g. noarch (default) | | specFile | string? | Path to a custom spec file (relative to cwd or absolute). Same placeholders as built-in: {{name}}, {{version}}, {{files}}, etc. | | specTemplate | string? | Inline spec template string (ignored if specFile is set) | | verbose | boolean? | Log rpmbuild output |

Returned BuildContext includes rpms?: { rpm: string | null; srpm: string | null } with paths to the built RPM(s).

RpmBuilder class

Same options as build(). Emits message events with phase and args. Use for multiple builds or progress logging.

License

See LICENSE.