Promise based Node.js client for the Postmates API.
npm install --save node-postmates
const { CLIENT_ID, API_KEY } = process.env;
import Postmates from 'node-postmates';
const postmates = new Postmates(CLIENT_ID, API_KEY);
return postmates.getDeliveryZones()
.then(zones => console.log(`These are zones Postmates supports: ${zones}`));