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
- Host: GitHub
- URL: https://github.com/philippdormann/inetmenue-js
- Owner: philippdormann
- License: mit
- Created: 2022-10-31T23:58:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T17:10:45.000Z (over 2 years ago)
- Last Synced: 2025-05-28T07:52:55.449Z (4 months ago)
- Topics: graphiql, graphql, inetmenue, nodejs, parser
- Language: JavaScript
- Homepage: https://inetmenue.onrender.com/graphiql
- Size: 142 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```