Socket
Book a DemoInstallSign in
Socket

@sap_oss/odata-library

Package Overview
Dependencies
Maintainers
23
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap_oss/odata-library

OData client for testing Netweawer OData services.

latest
Source
npmnpm
Version
2.5.0
Version published
Maintainers
23
Created
Source

OData library

REUSE status

A NodeJS library to access OData services provided by the Netweaver server.

Documentation

Documentation is here.

Installation

$ npm  install @sap_oss/odata-library

Getting Started

const Service = require("@sap_oss/odata-library").Service;

let service = new Service(
  "https://username:password@localhost/path/to/service/"
);

service.init
  .then(() => {
    return service.Entity_Set_Name.get(1);
  })
  .then((result) => {
    console.log(result);
  });

Contact Us

Jakub Vaclavik <jakub.vaclavik@sap.com>
Michal Nezerka <michal.nezerka@sap.com>
Norbert Volf <norbert.volf@sap.com>

License

Copyright (c) 2020-2021 SAP SE or an SAP affiliate company and odata-library contributors. Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.

Keywords

OData

FAQs

Package last updated on 12 Jun 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