RIPE Config API for Javascript
Simple Javascript API client for RIPE Config.
Example
import { API as ConfigAPI } from "ripe-config";
await ConfigAPI.load();
const api = new ConfigAPI({
username: "YOUR_USERNAME",
password: "YOUR_PASSWORD"
});
console.info(await api.getResource("info.json"));
Configuration
Name | Type | Default | Description |
---|---|---|---|
RIPE_CONFIG_BASE_URL | str |
https://config.platforme.com/ |
The base URL to the RIPE ID server instance to be used. |
RIPE_CONFIG_USERNAME | str |
null |
The username to be used for authentication. |
RIPE_CONFIG_PASSWORD | str |
null |
The password to be used for authentication. |
License
RIPE Config API Javascript is currently licensed under the Apache License, Version 2.0.