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

cap-table-maintainer

v2.3.0

Published

table maintainance generator for sap cap apps

Readme

cap-table-maintainer

A CLI tool for automatically generating a Table Maintenance Fiori app for SAP CAP (Cloud Application Programming) projects.

Overview

cap-table-maintainer is a Node.js command-line interface (CLI) tool designed to streamline the process of building a Table Maintenance Fiori app for SAP CAP applications. SAP CAP applications, when built with OData V4 and freestyle UI5, typically lack an out-of-the-box solution for table maintenance. This tool solves that problem by automatically generating a fully functional Table Maintenance UI5 app for managing data in your tables of your SAP CAP Project.

Features

  • Automatic Table Maintenance App Generation: Automatically generates a Fiori-based table maintenance app for your SAP CAP tables.

Installation

To install the cap-table-maintainer package, run the following command:

npm install -g cap-table-maintainer

Usage

  • Navigate to the root folder of your SAP CAP project.
  • Run the following command:
ctm build
  • After running the command, the Table Maintenance Fiori app will be generated automatically under your app folder.
  • You can run generated fiori app by executing npm start

Example

Copy code
$ npm install -g cap-table-maintainer
$ cd path/to/your/cap/project
$ ctm build

This will generate a table maintenance Fiori app that you can immediately use to manage the tables in your SAP CAP application.

How It Works

When you run ctm build, the tool reads the entities defined in your CAP model (either CDS or YAML), and based on these entities, it generates a corresponding Fiori UI5 app with CRUD (Create, Read, Update, Delete) functionality for each table.

The generated app is placed in your app folder and can be directly integrated into your CAP project.

Requirements

  • Node.js (version >= 14.x)
  • SAP CAP Project with OData V4 service (As of now, the ctm works with odata v4 only)

Contributing

Feel free to fork, open issues, or submit pull requests to help improve the project!

  • Fork the repository.
  • Create a feature branch (git checkout -b feature-name).
  • Commit your changes (git commit -m 'Add new feature').
  • Push to the branch (git push origin feature-name).
  • Open a pull request.

License

MIT License.