alexleventer / node-postmates

:pizza::hamburger: Node.js client for the Postmates API

Home Page:https://postmates.com/developer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Postmates Logo

node-postmates Build Status Maintainability Test Coverage

Promise based Node.js client for the Postmates API.

Installation

npm install --save node-postmates

Example Usage

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}`));

About

:pizza::hamburger: Node.js client for the Postmates API

https://postmates.com/developer

License:MIT License


Languages

Language:JavaScript 100.0%