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

@nodenv/nodenv-npm-migrate

v0.1.1

Published

Migrate npm packages from one Node version to another

Downloads

2

Readme

nodenv-npm-migrate

nodenv-npm-migrate is a nodenv plugin that provides a nodenv migrate command to migrate npm packages from one Node version to another.

This plugin was forked from pyenv-pip-migrate.

Installation

Installing as a nodenv plugin

Installing nodenv-npm-migrate as a nodenv plugin will give you access to the nodenv migrate command.

$ git clone git://github.com/nodenv/nodenv-npm-migrate.git "$(nodenv root)/plugins/nodenv-npm-migrate"

This will install the latest development version of nodenv-npm-migrate into the $(nodenv root)/plugins/nodenv-npm-migrate directory. From that directory, you can check out a specific release tag. To update nodenv-npm-migrate, run git pull to download the latest changes.

Installing with Homebrew (for OS X users)

Mac OS X users can install nodenv-npm-migrate with the Homebrew package manager. This will give you access to the nodenv-migrate command. If you have nodenv installed, you will also be able to use the nodenv migrate command.

This is the recommended method of installation if you installed nodenv with Homebrew.

$ brew install nodenv/nodenv/nodenv-npm-migrate

Or, if you would like to install the latest development release:

$ brew install --HEAD nodenv/nodenv/nodenv-npm-migrate

Usage

Using nodenv migrate with nodenv

nodenv-npm-migrate uses npm ls --global --depth=0 to dump all installed packages in a Node version, and then tries to npm install them into another version.

Let's say if you have following two versions in nodenv.

$ nodenv versions
* 0.12.0 (set by /home/jawshooah/.nodenv/version)
  iojs-1.6.2
$ npm ls --global --depth=0
/home/jawshooah/.nodenv/versions/0.12.0/lib
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

To migrate installed packages from 0.12.0 to iojs-1.6.2, use nodenv migrate.

$ nodenv migrate 0.12.0 iojs-1.6.2
$ nodenv global iojs-1.6.2
$ npm ls --global --depth=0
/home/jawshooah/.nodenv/versions/iojs-1.6.2/lib
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

Credits

Forked from Yamashita, Yuu's pyenv-pip-migrate by Josh Hagins and modified for nodenv.