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

@yunsoft/yuncms

v0.1.14

Published

Command-line setup and runtime launcher for YunCMS.

Readme

@yunsoft/yuncms

Command-line setup, runtime launcher and guarded upgrade tooling for YunCMS.

Quick start

You do not need to clone or fork the YunCMS repository. From an empty project directory, run the published package directly:

mkdir my-yuncms
cd my-yuncms
npx --yes @yunsoft/yuncms init
npx --yes @yunsoft/yuncms start

init creates the project .env, asks for MySQL connection details, applies the required database migrations and creates the first Administrator account.

The current directory is used as the YunCMS project directory. Initialization also creates an uploads/ directory, a Plesk-compatible start.js, a 200-response health endpoint example under extensions/health/, and a minimal hook example under extensions/example-hook/. Existing project files are preserved and are not overwritten by the scaffold.

The generated health extension is available at /extensions/health. The core /health and /ready routes remain unchanged.

Persistent project dependency

For a long-lived installation that should keep YunCMS in its own package.json and use managed updates, install the package once:

npm init -y
npm install @yunsoft/yuncms
npx yuncms init
npx yuncms start

Once installed locally, npx yuncms ... resolves the project's pinned package version.

For Plesk, install @yunsoft/yuncms locally and use the generated start.js as the application startup file. The same entry can be checked manually with:

node start.js

Production maintenance commands:

npx yuncms backup
npx yuncms update --dry-run
npx yuncms update --to 0.2.0
npx yuncms restore /path/to/backup --yes

backup and update require the YunCMS service supervisor to be stopped so database and local Files/extensions can be snapshotted consistently. Managed updates require a verified backup, inspect target migration compatibility, run the newly installed migration code, probe /ready, and attempt automatic rollback on failure.

S3 objects are not copied by YunCMS backup; use provider-side versioning/snapshots and verify recovery before acknowledging an S3 update.

YunCMS requires Node.js 24 LTS and MySQL. See the project documentation, docs/setup-cli.md and docs/upgrades.md for setup, deployment and upgrade documentation.

Project status

YunCMS is developed and maintained by Yunsoft Software. It is under active development, so interfaces and behavior may change between releases. Test upgrades and keep verified backups before production use.

Use YunCMS at your own risk. This package is provided under the MIT License without warranty.