UNPKG

distance-calculator-openrouteservice

Version:

A free Node.js library to calculate distance between places using OpenRouteService.

9 lines (6 loc) 177 B
import getDistance from './src/index.js'; const run = async () => { const result = await getDistance("New Delhi", "Mumbai", "driving-car"); console.log(result); }; run();