No description
Find a file
2023-03-26 19:31:18 +02:00
.github/workflows CI: fix Docker build & push 💚 2023-03-26 19:31:18 +02:00
docs db-hafas@6, hafas-rest-api@5, cached-hafas-client@5 💥📝 2022-12-28 14:22:22 +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 gitignore /docs/api.md 2022-12-21 14:48:06 +01:00
api-docs.js db-hafas@6, hafas-rest-api@5, cached-hafas-client@5 💥📝 2022-12-28 14:22:22 +01:00
api.js add travellers age parameter 2023-03-25 23:59:24 +01:00
architecture.svg prepare for v6 📝💚 2022-12-21 14:47:58 +01:00
Dockerfile Node 18+ 💥💚 2022-12-21 14:47:58 +01:00
index.js convert to ESM 💥 2022-12-21 14:47:58 +01:00
license.md minor tweaks 📝; 5.0.2 2022-11-22 16:07:57 +01:00
package.json fix readme 📝; 6.0.0 2022-12-28 14:22:28 +01:00
readme.md fix readme 📝; 6.0.0 2022-12-28 14:22:28 +01: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

db-rest expects a Redis server running on 127.0.0.1:6379 (default port), but you can set the REDIS_URL environment variable to change this.

via Docker

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

docker run -d -p 3000:3000 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
npm run build

redis-server &
npm start

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

  • 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.