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

@lu.musuhi/cim.ts

v0.1.1

Published

TypeScript implementation of the DMTF Common Information Model (CIM) Schema classes.

Readme

TypeScript CIM Core - DMTF Common Information Model

DMTF CIM 2.55 TypeScript License: MIT

Early Development Stage - A TypeScript implementation of the DMTF Common Information Model (CIM) Schema for building management models and infrastructure tooling.

This library focuses on CIM core classes, state machines, and type-safe value maps that form the foundation for modeling managed elements, services, and jobs. It is aligned with the DMTF CIM Schema v2.55 and is designed to be extended by concrete providers.

Intended Use Cases

This library is being developed for:

  • Systems management platforms implementing DMTF CIM semantics
  • Infrastructure and service providers modeling managed resources
  • Automation tooling that benefits from CIM state machines
  • Typed domain models that follow CIM class contracts

Current Status

Early development - Core class hierarchy and several foundational types are implemented. The project is expanding toward broader CIM Schema coverage.

What's Implemented

  • Core class hierarchy - CIM_ManagedElement, CIM_ManagedSystemElement, CIM_LogicalElement
  • Lifecycle state machines - CIM_EnabledLogicalElement and CIM_Service behavior
  • Job model - CIM_Job and CIM_ConcreteJob runtime APIs and JSON contracts
  • Type-safe enums - CIM value maps for status, state, and job semantics
  • Interfaces - ICIM_* contracts for data-only representations

Architecture Notes

  • Type safety - Strict TypeScript settings and explicit CIM value maps
  • Extensibility - Abstract classes ready for provider-specific subclasses
  • CIM alignment - Property constraints and semantics follow v2.55

Getting Started

This project is not published to npm yet. To build locally:

npm install
npx tsc -p tsconfig.json

Example

import { CIM_ManagedElement } from "./src/cimManagedElement.js";

class MyElement extends CIM_ManagedElement {
    constructor() {
        super("Demo", "Example managed element", "MyElement");
    }
}

Contributing

Contributions are welcome. Please open an issue or PR to discuss additions to the CIM class coverage.

License and Attribution

This project is licensed under the MIT License - see the LICENSE file for details.

DMTF CIM Schema Attribution

This implementation is based on the DMTF Common Information Model (CIM) Schema specification, copyright © Distributed Management Task Force, Inc. (DMTF). All rights reserved.

The CIM Schema is used under DMTF's policy allowing reproduction and implementation of DMTF specifications provided that correct attribution is given.

Note: Implementation of CIM elements may be subject to third-party patent rights. DMTF makes no representations regarding the existence of such rights. For patent disclosure information, visit: http://www.dmtf.org/about/policies/disclosures.php

Related Links