Code Monkey home page Code Monkey logo

jetbrains-npm's Introduction

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 if you have a custom nodenv root)

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

(recommended if your nodenv root is the default ~/.nodenv)

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! (In fact, if the package manager field is empty before cloning, then a restart of WebStorm should select it automatically.)

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

homebrew

brew tap nodenv/nodenv
brew install jetbrains-npm

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

brew --prefix jetbrains-npm

And finally, 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.

jetbrains-npm's People

Contributors

jasonkarns avatar toc-me[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

jetbrains-npm's Issues

Just what I'm looking for ... but....

First off, THANK YOU. We use nodenv for all our app dev, and I'm a little surprised that RubyMine doesn't support it better out of the box. Thanks for investigating the issue and bring a fix to the table.

I use the standard ~/.nodenv location, and have configured RM (see attached screenshot).

When I go to download libraries, I get this error dialog. Does it work for you? Any suggestions?

Thanks
Screen Shot 2020-02-04 at 2 55 15 PM

Screen Shot 2020-02-04 at 2 56 04 PM

I create yarn version.

I usually use it with yarn.
When installing with jetbrains-npm, package-lock.json was created and I wanted to create a yarn version.
So I created jetbrains-yarn. Is it okay?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.