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

ness-js-helper

v1.19.0

Published

This is the helper of the nessjs core-orchestrator for Node.js runtime layers engine

Readme

NESS-JS Helper

NESS is a structured Node.js platform built around a Core Orchestrator and installable Layers Packs. It is not a convenience-first framework and it is not meant to hide architecture behind a monolithic toolchain. The real project lives on GitLab, where you can find the core, the platform vision, the manifest, and the official packs that extend the system.

This npm package is only the helper entry for that ecosystem. If you arrived here from npm, you are not installing the whole platform logic through this package alone: you are using a small helper that can introduce the project, guide a first installation, and help with a few basic project operations before you move into the real core orchestrator workflow.

The helper is useful if you want a simpler starting point from npm, but the core project can still be used directly from GitLab with git clone and then managed locally with node project start and node project manager.

Official project references

  • Main project space: https://gitlab.com/ness-js
  • Platform readme: https://gitlab.com/ness-js/gitlab-profile/-/blob/main/readme.md
  • Full manifest: https://gitlab.com/ness-js/gitlab-profile/-/blob/main/manifest.md

What this helper does

  • shows project info and orientation
  • installs the core orchestrator project via git
  • updates an existing git-based core project conservatively
  • explains how to remove a local project cleanly

Quick usage

npm scripts inside the package:

npm run info
npm run installer
npm run updater
npm run uninstaller

or, if you like the standard project command:

project info
project installer
project updater
project uninstaller

Important note

This helper is not the core runtime and does not replace the project manager inside a real NESS installation. Once the core project is installed, the normal local entry points remain:

node project start
node project manager

Warning: the project is still evolving, and some helper flows are intentionally conservative to avoid damaging a real project folder.