npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

apphubdeploy

v1.0.0

Published

Build and Deploy to AppHub in one fell swoop.

Downloads

28

Readme

npm version

Build and Deploy to AppHub.io in one fell swoop.

Screencast

Installation

npm install --global apphubdeploy

This will install AppHubDeploy globally so you can use it in all of your AppHub projects without installing it for each one.

Usage

Run from your project root directory.

This will build and deploy to AppHub.io with the default settings:

$ apphubdeploy

Build and Deploy with Options

The real power of AppHub Deploy comes when you add options such as -t / --target allowing you to deliver over-the-air (OTA) updates to your users via AppHub.io without ever leaving the command line. Powerful stuff!

For example, this will create and deploy a build with a name and description that's targeted to your debug users who are running version 1.0.3 of your app:

$ apphubdeploy -n "Build Name" -d "Build Description" -t "debug" -a 1.0.3

Less time clicking and more time being awesome.

AppHub Credentials

The first time you call apphubdeploy in a project directory it will prompt you for your AppHub ID and AppHub Secret, which can be found on the settings panel of your AppHub.io account.

Your AppHub credentials will be stored in a .apphub file that is readable only by you for security. Going forward, it will try to read your AppHub credentials from this file instead of prompting you.

In the event that you need to change your AppHub credentials, either modify the .apphub file itself or simply run apphubdeploy with the --configure option, like apphubdeploy --configure, and you will be prompted for your credentials again.

.apphub File

In the event that you're creating the .apphub file yourself, for example with an integration server, here is the sample format for the file:

{"appHubId":"thisismywonderfulapphubid","appHubSecret":"andthisismywonderfulapphubsecretshhhhh"}

Options

You can pass a number of options to the apphubdeploy command in order to specify how the build will be treated by AppHub as well as other options for the CLI like --verbose.

You can get a list of all the options by passing -h or --help as an option:

$ apphubdeploy --help

AppHub Build Options

Short Flag | Long Flag | Description -------------|--------------------------------------|------------ -a | --app-versions <app-versions> | App Versions separated by commas that are compatible with this build. Either do not use a space in between version or wrap it in quotes. Example: -a 1.0.3,1.0.4 Defaults to value in Info.plist of build file. -d | --build-description <description> | Description of the build. Wrap in quotes if it includes spaces. -e | --entry-file <entry-file> | The entry file for your application. Defaults to index.ios.js. -n | --build-name <name> | Name of the build. Wrap in quotes if it includes spaces. -p | --plist-file <plist-file> | Specify a custom .plist file path. Defaults to Info.plist. -t | --target <target> | One of all, debug or none which specifies the target audience of the build. Defaults to none.

Other Options

Short Flag | Long Flag | Description -------------|--------------------------------------|------------ -c | --configure | (Re)Configure AppHub ID and Secret key. -h | --help | Output usage information. -o | --open-build-url | Open AppHub Builds URL with your default browser after a successful build and deploy. -r | --retain-build | Do not remove the build after a successful deploy. By default it will be removed. -v | --verbose | Unleashes "Chatty Kathy" to the STDOUT - great for debugging! -V | --version | Output the version number.

Many Thanks To

  • My friend Irfaan for tirelessly helping test the early versions and providing endless encouragment.
  • Matt over at AppHub for testing their REST API with me.
  • The AppHub.io Platform, in general, for producing such a useful and easy-to-use tool that inspires and streamlines our development.

License

The MIT License (MIT)

Copyright 2016 - Time.now() by Joshua Pinter