https://github.com/dperezmavro/node-runscope
A node client for interacting with the Runscope API.
https://github.com/dperezmavro/node-runscope
api continuous-integration monitoring nodejs runscope synthetic-test
Last synced: 4 months ago
JSON representation
A node client for interacting with the Runscope API.
- Host: GitHub
- URL: https://github.com/dperezmavro/node-runscope
- Owner: dperezmavro
- Created: 2017-02-24T18:29:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T11:40:56.000Z (over 8 years ago)
- Last Synced: 2023-12-26T19:01:53.978Z (over 2 years ago)
- Topics: api, continuous-integration, monitoring, nodejs, runscope, synthetic-test
- Language: JavaScript
- Size: 56.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
This is an early-stage library for using the Runscope v1 API with node. This is a promise-based library, because I like promises.
# Usage
I tried to take some lessons about the structure of a large client from how the AWS SDK for node is structured. The currently supported endpoints are listed in `clients/all.js`, and a sample usage would be:
```javascript
var runscope = require('runscope').Environment;
var env = new Environment(api-key, bucket-key);
env.foo();
```