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/jetbrains-npm

v1.0.0

Published

Fix IntelliJ/WebStorm's npm integration under nodenv

Downloads

4

Readme

jetbrains-npm proxy

Fix IntelliJ/WebStorm's npm integration under nodenv

Pre-requisites

This proxy assumes you have already selected nodenv's shim as your node runtime within your IDE's preferences:

image

Installation

nodenv plugin (recommended)

This installation method allows the proxy to find nodenv root automatically; the tradeoff being that IntelliJ/WebStorm must be explicitly configured with the proxy's location.

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

After installation, set the Package Manager path to the output of:

echo "$(nodenv root)"/plugins/jetbrains-npm

jetbrains-aware git clone

This installation method enables JetBrains to find the npm proxy automatically, as it is relative to the node executable: ../lib/node_modules/npm/bin/npm-cli.js; (relative to shims/node) the tradeoff requires ensuring the proxy can find your nodenv-root.

mkdir -p "$(nodenv root)/lib/node_modules"
git clone https://github.com/nodenv/jetbrains-npm "$(nodenv root)"/lib/node_modules/npm

After installation, the IDE should automatically find the proxy and include it in the list of available package managers; just select it!

standalone clone

You may also choose to clone the proxy to any location on disk that you like.

# in whatever directory you like:
git clone https://github.com/nodenv/jetbrains-npm

After installation:

  1. set your Package Manager path as the path to your clone
  2. ensure NODENV_ROOT is set in your IDE environment

global npm or yarn package

npm -g install @nodenv/jetbrains-npm

or

yarn global add @nodenv/jetbrains-npm

After installation, set the Package Manager path to the output of:

echo $(npm -g prefix)/lib/node_modules/@nodenv/jetbrains-npm

or

echo $(yarn global dir)/node_modules/@nodenv/jetbrains-npm

And finally, ensure NODENV_ROOT is set in your IDE environment.

NOTE: Be aware which node is active when you install this package. Remember that global npm installs are still contained within the node version itself. ($(nodenv prefix)/lib/node_modules/) This means the package will be removed if you nodenv uninstall the particular node version. Therefore, it's recommended to install this package globally using a system node, such that this package will live outside nodenv versions. Yarn, in contrast, defaults to installing global packages to a single shared global directory; outside the node version.

Configuration

Package Manager

Regardless of your installation method, you will need to explicitly configure your package manager within IntelliJ/WebStorm. It may be detected by the IDE automatically, in which case you merely need to select it. Or you may need to paste in the full path manually.

The package manager setting is found under: Languages & Frameworks -> Node.js and NPM -> Package manager. It should be set to the path where this proxy was installed. (ie, the directory that contains this proxy's package.json file)

50924463-9f41af80-141d-11e9-8322-0456278c9bfd

Nodenv Root

If you use the default path of ~/.nodenv as your nodenv root, you're all set; the proxy should be able to derive your nodenv root location automatically.

If you use a custom location for nodenv root, you must ensure NODENV_ROOT is set accordingly and exported in IntelliJ/WebStorm's environment in one of the following ways: - set and export it in ~/.profile or ~/.bash_profile - or source ~/.bashrc from ~/.profile or ~/.bash_profile - or always launch IntelliJ/WebStorm from a terminal - or modify the IDE desktop launcher to launch bash interactively

(see https://youtrack.jetbrains.com/issue/IDEABKL-7589 for more details about JetBrains and environment variables)

Why is this necessary?

IntelliJ/WebStorm, for its own reasons, does not directly execute the npm or yarn executable found in PATH. Instead, it attempts to find the npm/yarn package directory, and invoke node with the bin/npm-cli.js or bin/yarn.js script. (resolution logic) Of course, nodenv only resolves the true location of the node (or npm/yarn) executable at invocation time. This means JetBrains will never find the npm-cli.js or yarn.js scripts, since they do not exist relative to nodenv's node shim. (nor can they be found relative to nodenv's npm/yarn shims)

How it works

This proxy conforms to the directory structure that JetBrains is hardcoded to find: the npm shim is at bin/npm-cli.js. Thus, IntelliJ/WebStorm can be configured to treat this proxy as the "package manager". The various installation options either support JetBrains' own lookup mechanisms such that JetBrains can find the proxy automatically, or allow the proxy to find nodenv-root automatically.

When the proxy is invoked, it derives the nodenv-root (either by the proxy's own file location, or by the nodenv root command which relies on NODENV_ROOT and defaults to ~/.nodenv). Then it proxies the invocation to nodenv's shim (found at $(nodenv root)/shims/npm); wherein nodenv can ensure the correct version of node+npm is activated according to .node-version, etc.