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

https://github.com/philippdormann/inetmenue-js

unofficial inetmenue.de parser for js
https://github.com/philippdormann/inetmenue-js

graphiql graphql inetmenue nodejs parser

Last synced: 3 months ago
JSON representation

unofficial inetmenue.de parser for js

Awesome Lists containing this project

README

          

# inetmenue-js
inetmenue.de parser for js

## Data Sources
currently 360 sources, see [sources.json](./packages/lib/sources.json) for the full list

## GraphQL Usage
```
node api.js
```

hosted version: https://inetmenue.onrender.com/graphiql

## Library Usage
```
pnpm i inetmenue
```
```
import { getFoodItems } from "inetmenue";

const foodItems = await getFoodItems({ kw: "2022W45", source: "fag-neustadt" })
console.log(foodItems);
```