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

@jarkkojs/phindex

v1.1.2

Published

Export and normalize digital photos from local, SFTP, and iOS sources

Downloads

465

Readme

phindex

phindex exports photos from local, SFTP, or iOS sources and normalizes their names into one naming convention. It supports JPEG, PNG, and Canon CR2 files.

Installation

Install the prebuilt Linux binary through npm (Node.js 18 or newer):

npm install -g @jarkkojs/phindex

Prebuilt packages are available for Linux x64 and ARM64. To build from source:

zig build
zig build -Doptimize=ReleaseSafe

phindex is written in Zig. Command-line parsing uses zig-clap. JPEG and PNG decoding uses zigimg; EXIF timestamps are parsed in Zig. CR2, SFTP, and iOS still link libraw, libssh2, and libimobiledevice.

Development

Run the same checks used before a release:

make ci

make package archives HEAD and cross-compiles static musl binaries with zig cc on the host. No container is required. The host needs Zig (matching build.zig.zon), Node.js, autotools, pkg-config, perl, curl, file, and make. Staging writes binaries under npm/*/bin and release tarballs under artifacts/:

make package
make package PLATFORMS='linux-x64'
PACKAGE_STRICT=1 make package

Release

Create the version commit and signed tag, push them, then package HEAD and publish from the signed tag:

scripts/release.sh <version>
git push --atomic origin main <version>
make ci
PACKAGE_STRICT=1 make package
make publish

make publish publishes the two platform packages followed by @jarkkojs/phindex, then creates or updates the GitLab release with glab. The first npm release must use a new version tag containing this packaging setup.

Licensing

phindex and its npm packages are licensed under GPL-3.0-or-later.