o.js is a isomorphic Odata Javascript library to simplify the request of data. The main goal is to build a standalone, lightweight and easy to understand Odata lib.
npm install odatao.js is a isomorphic Odata Javascript library to simplify the request of data. The main goal is to build a standalone, lightweight and easy to understand Odata lib.
```
npm install odata
> Or you can use npm install o.js which will resolve the same package
javascript
import { o } from 'odata';(async () => {
// chaining
const data1 = await o('http://my.url')
.get('resource')
.query({ $top: 3 });
// handler
const oHandler = o('http://my.url');
const data2 = await oHandler
.get('resource')
.query({ $top: 3 });
})();
`$3
`html
Dist Tags