No description
Find a file
2024-08-08 14:02:07 +00:00
.github CI: lint & test on PRs too, with Node 18-22 💚 2024-08-08 16:01:45 +02:00
build API docs: minor fix 📝 2024-01-25 14:48:16 +01:00
docs readme: explain differences in realtime data between DB app and db-rest 📝 2024-03-19 13:41:27 +01:00
lib db-stations@5, db-stations-autocomplete@4 2022-12-28 14:22:28 +01:00
routes db-stations@5, db-stations-autocomplete@4 2022-12-28 14:22:28 +01:00
test adapt tests to latest data 2022-12-28 14:22:28 +01:00
.dockerignore minor changes 2019-03-27 12:22:48 +01:00
.editorconfig init from vbb-rest 2017-10-24 23:28:12 +02:00
.eslintrc.json convert to ESM 💥 2022-12-21 14:47:58 +01:00
.gitignore check in package-lock.json, adapt Dockerfile & CI config 💚 2023-09-06 14:41:51 +02:00
api.js docs: fix status page link/badge, other tweaks 📝; 6.0.1 2023-05-08 14:58:13 +02:00
architecture.svg prepare for v6 📝💚 2022-12-21 14:47:58 +01:00
Dockerfile check in package-lock.json, adapt Dockerfile & CI config 💚 2023-09-06 14:41:51 +02:00
index.js convert to ESM 💥 2022-12-21 14:47:58 +01:00
license.md API docs: minor fix 📝 2024-01-25 14:48:16 +01:00
package-lock.json chore(deps): lock file maintenance 2024-08-08 14:02:07 +00:00
package.json readme: use "docker.io" in image names; 6.0.5 2024-05-29 17:23:47 +02:00
readme.md readme: use "docker.io" in image names; 6.0.5 2024-05-29 17:23:47 +02:00

db-rest

A clean REST API wrapping around the Deutsche Bahn HAFAS API. It is deployed at v6.db.transport.rest.

API Documentation

db-rest architecture diagram

API status dependency status ISC-licensed support me via GitHub Sponsors chat with me on Twitter

installing & running

access to Redis

It is recommended that you let bvg-rest cache HAFAS responses within a Redis cache. To use this feature, set $REDIS_URL (e.g. to redis://localhost:6379/1 when running Redis locally).

via Docker

A Docker image is available as docker.io/derhuerst/db-rest:6.

docker run -d -p 3000:3000 docker.io/derhuerst/db-rest:6

Note: The Docker image does not contain the Redis server.

manually

git clone https://github.com/derhuerst/db-rest.git
cd db-rest
git checkout 6
npm install

export HOSTNAME='my-vbb-rest-api.example.org'
npm run build

redis-server &
npm start

To keep the API running permanently, use tools like forever or systemd.

  • DB-Adapter-v6 A Java API client for db-rest.
  • vbb-rest  A clean REST API wrapping around the VBB API.
  • bvg-rest  A clean REST API wrapping around the BVG API.
  • hvv-rest  A clean REST API wrapping around the HVV API.
  • hafas-rest-api  Expose a HAFAS client via an HTTP REST API.
  • hafas-client  JavaScript client for HAFAS public transport APIs.

Contributing

If you have a question, found a bug or want to propose a feature, have a look at the issues page.