Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goya/pgb-api
Nodejs module for accessing the REST api on PhoneGap Build
https://github.com/goya/pgb-api
api-client cordova phonegap phonegap-build
Last synced: about 1 month ago
JSON representation
Nodejs module for accessing the REST api on PhoneGap Build
- Host: GitHub
- URL: https://github.com/goya/pgb-api
- Owner: goya
- License: mit
- Created: 2017-07-17T18:39:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T20:31:19.000Z (about 6 years ago)
- Last Synced: 2023-06-17T00:20:37.830Z (over 1 year ago)
- Topics: api-client, cordova, phonegap, phonegap-build
- Language: JavaScript
- Homepage: https://build.phonegap.com
- Size: 46.9 KB
- Stars: 3
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pgb-api
This is a nodejs module to access the public REST api of [PhoneGap Build](https://build.phonegap.com).The module can be added to your project with:
```javascript
> yarn add pgb-apior
> npm install pgb-api --save
```Here is a snippet to print out your apps to the console:
```javascript
const pgb = require('pgb-api')()pgb.addAuth('your-api-token')
pgb.getApps()
.then(console.log)
.catch(console.error)```
A cheatsheet is [here](CHEATSHEET.md).
If you find a bug or have a feature request tell me about it [here](https://github.com/phonegap-build/pgb-api/issues).
Follow me on twitter **@brettrudd**