Lite version of node-cityscoot
npm install node-cityscoot-liteLite version of node-cityscoot
``javascript`
const Cityscoot = require('node-cityscoot-lite');
const city = new Cityscoot();
For a cool example, see _example/index.js_
`javascript`
await city.getScooters(cityId);
// Paris: 4
// Nice: 6
// Milan: 9
// Rome: 10
`javascript`
await city.getScooter(cityId, scooterName);
// cityId: 4
// scooterName: 5193
`javascript``
await city.getZones();