npm.io
3.1.1 • Published 5 years ago

@dosomething/gateway

Licence
MIT
Version
3.1.1
Deps
6
Size
62 kB
Vulns
0
Weekly
0

Gateway (JS)

This is a simple JavaScript API client for DoSomething.org service, modeled after the Gateway PHP API client.

Installation

Install your own copy of Gateway JS using npm:

npm install @dosomething/gateway --save

Browser

Include the bundled dist/gateway.js in your page, or require it using a module bundler.

Server
  • Set valid ENV variables in your project. See: .env.example.
  • Require the server module @dosomething/gateway/server.
Usage
/**
 * Browser
 * somefile.js
 */

import { RestApiClient, PhoenixAshes } from '@dosomething/gateway';

console.log(new RestApiClient());
console.log(new PhoenixAshes());


/**
 * Server
 * somefile.js
 */

 const { GatewayClient } = require('@dosomething/gateway/server');

 const gatewayClient = GatewayClient.getNewInstance();