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

com.neadrim.nuhub

v1.0.3

Published

NuHub is a UPM package for Unity Editor that facilitates tracking of Unity releases. It allows to browse release notes and easily install any Editor versions through Unity Hub, starting from Unity 2017.1.0.

Downloads

4

Readme

Disclaimer

This package is developed for my personal needs and is in no way provided or supported by Unity Technologies.

The code relies entirely on the content available in Unity download archive and may break at any time if Unity decide to change its format. I intend to improve and maintain this package as often as possible, without warranty.

Introduction

NuHub is a UPM package for Unity Editor that facilitates tracking of Unity releases. It allows to browse release notes and easily install any Editor versions through Unity Hub, starting from Unity 2017.1.0.

Why? I often need to look for specific issues or fixes before updating my projects to a new Unity version and searching through individual web pages in the Unity Releases Archive is tedious. Unfortunately, Unity Hub only provides options to install the latest releases and otherwise redirects you to the archive page. I would have liked to see Unity Hub 3.x integrate some of these features but still no luck, so here it is.

Features

  • Browse official Unity releases in a single and organized editor window (Pre-Releases not available yet).
  • View available updates based on your current Unity version.
  • Search release notes by keywords in multiple releases at once.
  • Install any Editor versions in Unity Hub with a single click.
  • Automatically check for new releases daily or on demand.

Requirements

Works with Unity 2021.2.0 or newer. I did not bother supporting earlier versions and have no intention to do so since one of my goals with this project was to familiarize myself with UI Toolkit but unfortunately, it still had a lot of issues prior to 2021.2.

Installation

The package is distributed on GitHub and npm so it can be added easily to any project using Unity's Package Manager (UPM).

Install from Npm

In my opinion, this is the easiest way to install the package and manage version updates in UPM. The package is published to the public unscoped registry which does not require authentication.

  1. In Unity, open Project Settings/Package Manager.
  2. In the Scope Registries section, add the npm registry as follows: Name: npm URL: https://registry.npmjs.org Scope(s): com.neadrim Note that you may add multiple scopes to the list if you are using other packages from npmjs.org.
  3. Click "Apply" and wait for unity to refresh the registry.
  4. In the Package Manager window, select My Registries in the Packages drop-down menu on the top left.
  5. NuHub should now be available to install under the scope Neadrim.

For more information, see Unity's documentation about Installing from a registry.

Install from Git URL

  1. In Unity, open the Package Manager window.
  2. Click the add + button in the top menu bar and select Add package from Git URL...
  3. Enter NuHub Git URL in the text box (https://github.com/Neadrim/com.neadrim.nuhub.git) and click Add. You may also install a specific release, branch or commit by appending it to the URL. For example: https://github.com/Neadrim/com.neadrim.nuhub.git#1.0.0

For more information, see Unity's documentation about Installing from a Git URL.

Local / Embedded

Download the latest release and follow Unity's guide about Installing a package from a local folder or as embedded dependencies. In short, simply copy the package content in your project under ./Packages/com.neadrim.nuhub to embed it.

Usage

You can open NuHub from the menu Window/NuHub.

On the first use, it may take a moment to fetch releases information. You can see the progress in the bottom left status bar. The information is cached in the project Library folder so as long as you don't delete it, subsequent refreshes should be really quick.

By default, NuHub will check for new Unity releases once a day, when the window is open. You can also force it to refresh by clicking the Refresh button in the status bar.

Third-Party Code & Licenses

Html Agility Pack

The MIT License (MIT)