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

buildsync-submit

v1.0.0

Published

`buildSync` is a CLI tool designed to facilitate the upload of `.apk` and `.ipa` files to a server for build synchronization. This tool leverages Node.js and several libraries to ensure a smooth and efficient upload process, complete with progress trackin

Downloads

3

Readme

buildSync

buildSync is a CLI tool designed to facilitate the upload of .apk and .ipa files to a server for build synchronization. This tool leverages Node.js and several libraries to ensure a smooth and efficient upload process, complete with progress tracking and error handling.

Features

  • Upload Support: Only supports .apk and .ipa file uploads.
  • Progress Tracking: Provides a visual progress bar during the upload.
  • Error Handling: Detailed error messages to guide the user.
  • Environment Configuration: Uses environment variables for configuration.

Installation

To get started, clone this repository and install the necessary dependencies:

git clone https://github.com/Skipperlla/buildSync-cli.git
cd buildSync
npm install or yarn install

Usage

Ensure you have the necessary environment variables set in your .env file:

BUILD_SYNC_API_TOKEN=your_BUILD_SYNC_API_TOKEN
BUILD_SYNC_API_URL=http://yourServerAddress:yourPort/upload

Commands

The buildSync CLI tool provides a primary command submit to upload files.

submit

This command uploads a specified .apk or .ipa file to the server.

Options
  • -p, --path <filePath>: Path to the file to upload. The file must be either a .apk or .ipa file.
  • -o, --orgId <orgId>: Organization ID. This is the unique identifier for your organization.
  • -a, --appId <appId>: Application ID. This is the unique identifier for the application you are uploading the file for.
Example
buildSync submit -p /path/to/your/file.apk -o yourOrgId -a yourAppId

Help Command

For a detailed list of available commands and options, you can use the --help flag:

buildSync --help

Development

File Structure

  • index.js: Entry point for the CLI tool.
  • upload.js: Contains the uploadFile function that handles the file upload logic.

Dependencies

  • axios: Promise-based HTTP client for the browser and Node.js.
  • cli-progress: Flexible command line progress bar.
  • form-data: A module to create readable "multipart/form-data" streams.
  • dotenv: Loads environment variables from a .env file into process.env.
  • chalk: Terminal string styling done right.
  • commander: The complete solution for node.js command-line interfaces.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.

This README provides a comprehensive overview of your project, detailing its purpose, installation steps, usage instructions, and file structure. It should help users understand how to use your CLI tool effectively.