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

unity-downloader

v1.0.6

Published

Helps you automate Unity downloads

Downloads

14

Readme

Unity Downloader

This is a CLI tool written in Node.js (so yes, you will need to install Node) to help you download Unity releases and maintain copies of multiple versions. It can be very useful to stick this in a CI environment which could download new releases the moment they are out, avoiding the long wait for the download to complete. For teams, it can also mean a big win by not having everyone download their individual copies through the official Unity Downloader, but instead installing from the same shared downloaded packages.

Installing

Make sure you have Node.js installed. Pretty much any version should work, as we don't use any new high-tech super rainbow unicorn APIs, nor ES6.

npm install --global unity-downloader

Usage

$ unity-downloader --help

Usage: unity-downloader [options]

Options:

  --url=URL           The URL that will be scraped for downloads (default: http://unity3d.com/get-unity/download/archive)
  --semver=RANGE      A semver range within which to limit your downloads (default: >= 5.0.0)
  --latest-only       Flag for downloading only the most recent version in the range (no value, default: off)
  --systems=LIST      For which operating systems to download (default: mac,win)
  --downloads=LIST    Which packages to download (default: unity editor,unity editor 64-bit)
  --out=PATH          Output folder (default: ./)
  --status=PATH       Output file for single version download info (may contain ${VERSION}, eg: '${VERSION}.json'), default: none)
  --simulate          Flag for doing a simulation run (no value, default: off)
  --help              This help output

License

MIT