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

upgrade-remix

v0.6.2

Published

Command line utility to upgrade all Remix dependencies together

Downloads

881

Readme

upgrade-remix

upgrade-remix is a CLI utility to update/list all of your Remix dependencies together.

Supported Package Managers

PR's welcome to support additional package managers!

Usage

Updating Packages

upgrade-remix will automatically detect the relevant remix and @remix-run/* packages from your package.json and runs the proper commands to upgrade them. Once updated it runs a full npm ci/yarn install/etc. to ensure everything is synced up.

# By default it will update to the `latest` tag on NPM
> npx upgrade-remix

# Or you can specify a specific version or tag
> npx upgrade-remix 1.16.0
> npx upgrade-remix pre

Arguments

The following arguments can be passed to upgrade-remix:

--dry-run/-d

Setting --dry-run will avoid making any changes and will instead print out the install commands it would otherwise have run:

npx upgrade-remix --dry-run

--package-manager/-p

upgrade-remix will try to detect the package manager by looking for a lockfile in the current working directory, but in monorepo setups you may have the lockfile elsewhere so automatic package manager detection may fail. You may use this flag to be explicit about your your package manager:

npx upgrade-remix --package-manager npm

Listing Packages

You can also use upgrade-remix to list currently installed Remix packages to ensure they are synced up and/or de-duped accordingly:

> npx upgrade-remix --list-versions

# Or using the "-l" shorthand
> npx upgrade-remix -l