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
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