Skip to content

🔏 Standard JS API client for DoSomething.org services.

License

Notifications You must be signed in to change notification settings

DoSomethingArchive/gateway-js

Repository files navigation

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();

About

🔏 Standard JS API client for DoSomething.org services.

Resources

License

Stars

Watchers

Forks

Packages

No packages published