0.1.1 • Published 6 years ago

appaloosa-client v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Appaloosa Client for node.js

Publish your apps into your Appaloosa Store

Installation

npm install appaloosa-client

Usage

const appaloosa = require('appaloosa-client');
    
...
    
const token = '{APPALOOSA_TOKEN}';
const filepath = '{PATH_TO_YOUR_PACKAGE}/android/build/outputs/apk/release/android-release.apk';
const groups = [ '{APPALOOSA_GROUP}' ];
const changes = '{CHANGELOG}';
    
...
    
appaloosa.upload(token, filepath, groups, changes);