https://github.com/jzarca01/node-ubereats
A work in progress API for Uber Eats
https://github.com/jzarca01/node-ubereats
api-wrapper food nodejs uber-api
Last synced: 10 months ago
JSON representation
A work in progress API for Uber Eats
- Host: GitHub
- URL: https://github.com/jzarca01/node-ubereats
- Owner: jzarca01
- Created: 2019-02-01T20:34:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T20:58:54.000Z (about 7 years ago)
- Last Synced: 2025-04-07T15:52:46.121Z (11 months ago)
- Topics: api-wrapper, food, nodejs, uber-api
- Language: JavaScript
- Size: 2.93 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-food - node-ubereats - A work in progress API for Uber Eats. (API for Food services)
README
# node-ubereats
A _work in progress_ API for Uber Eats
## Installation
```shell
npm install --save node-ubereats
```
## Usage
```javascript
const UberEats = require('node-ubereats');
const uber = new UberEats({
latitude: 48.8563148,
longitude: 2.3227369,
formattedAddress: '16 Rue de Rochechouart, 75009 Paris'
});
```
## Methods
### Get restaurants
```javascript
uber.getRestaurants();
```
### Search for restaurants
```javascript
uber.searchRestaurants((searchQuery = 'Indian'));
```
### Get store details
```javascript
uber.getStoreDetails(storeUuid);
```