New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sap-ux/ui5-info

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap-ux/ui5-info

SAP Fiori UI5 info

  • 0.9.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
135K
decreased by-5.72%
Maintainers
0
Weekly downloads
 
Created
Source

@sap-ux/ui5-info

Gets UI5 version info for available UI5 versions.

Installation

Npm npm install --save @sap-ux/ui5-info

Yarn yarn add @sap-ux/ui5-info

Pnpm pnpm add @sap-ux/ui5-info

Usage

import { getUI5Versions, type UI5VersionFilterOptions } from '@sap-ux/ui5-info';

const filterOptions: UI5VersionFilterOptions = {
    minSupportedUI5Version: '1.84.0',
    includeMaintained: true
};
const ui5Versions = await getUI5Versions(filterOptions);
/**
   ui5Versions :
  [
    {
        "version": "1.119.0",
        "maintained": true,
    },
    {
        "version": "1.117.0",
         "maintained": false,
    },
    {
        "version": "1.114.0",
         "maintained": true,
    },
    {
        "version": "1.108.0",
         "maintained": false,
    },
    {
        "version": "1.96.0",
         "maintained": false,
    },
    {
        "version": "1.84.0",
         "maintained": true,
    }
]
 */

See TypeScript doc for a full description of possible value for UI5VersionFilterOptions

Keywords

SAP UI5

FAQs

Package last updated on 28 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc