A Node.js module to find the distance and estimated travel time between two places using OpenRouteService API.
const { getDistanceByName } = require("distance-by-name");
const { origin, destination } = req.body;
const result = await getDistanceByName(origin, destination);