Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jolle/aromi

🍲 Node.js library for getting Aromi menu data.
https://github.com/jolle/aromi

Last synced: about 1 month ago
JSON representation

🍲 Node.js library for getting Aromi menu data.

Awesome Lists containing this project

README

        

# aromi

Library for getting Aromi menu data.

## Example

```ts
import { Aromi } from 'aromi';

const aromi = new Aromi('https://ruokalistat.azurewebsites.net/');

aromi
.getRestaurants()
.then((restaurants) => restaurants[0])
.then((restaurant) => restaurant.menus[0].getData())
.then((menuData) => console.log(menuData.Name));
```