Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sap_oss/odata-library

Package Overview
Dependencies
Maintainers
13
Versions
41
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.

  • 0.9.13
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
861
decreased by-6.51%
Maintainers
13
Weekly downloads
 
Created
Source

OData library

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

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);
});

Documentations

  • Read entities from the OData service
  • Create, update and delete entities
  • Support for Entity Data Model types and conversion of the Javascript variables to the OData primitives
  • Connect to services and define connection configuration
  • Writing tests and running test with the testing frameworks
  • How to use async/await to avoid promises
  • Validate OData model

Contact Us

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

License

Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file

Keywords

FAQs

Package last updated on 13 Apr 2021

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