Socket
Book a DemoInstallSign in
Socket

world_bank

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

world_bank

This_is_a_sample_API_implementation_using_the_World_Bank_Public_API__httpapi_worldbank_org_httpapi_worldbank_org

latest
npmnpm
Version
1.0.11
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

world_bank

WorldBank - JavaScript client for world_bank This is a sample API implementation using the World Bank Public API http://api.worldbank.org This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build date: 2017-03-15T15:05:02.334Z
  • Build package: class io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install world_bank --save

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var WorldBank = require('world_bank');

var defaultClient = WorldBank.ApiClient.default;

// Configure OAuth2 access token for authorization: OauthSecurity
var OauthSecurity = defaultClient.authentications['OauthSecurity'];
OauthSecurity.accessToken = "YOUR ACCESS TOKEN"

var api = new WorldBank.CountriesApi()

var code = "code_example"; // {String} Country Code


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.countriesCodeGet(code, callback);

Documentation for API Endpoints

All URIs are relative to http://localhost:8280/wb/1.0.0

ClassMethodHTTP requestDescription
WorldBank.CountriesApicountriesCodeGetGET /countries/{code}Returns the Country information

Documentation for Models

Documentation for Authorization

OauthSecurity

  • Type: OAuth
  • Flow: password
  • Authorization URL:
  • Scopes: N/A

FAQs

Package last updated on 16 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts