Run npm Scripts from package.json
Browse your package.json scripts and run in a dedicated tool window.
Modern web development means Node.js tools which mean a package.json file. This file sometimes has helper scripts under the scripts key. Running these perform various project operations such as build.
PyCharm with Pro subscription makes it easy to browse and run these. There are several different paths to opening the npm tool window:
-
Right-click on
package.jsonand choose Show npm scripts -
Click the
npmtool window on left -
Invoke Recent Files with ⌘E (macOS) / Ctrl+E (Windows/Linux) and type npm
Note: If you leave the tool window open, resize it to take less vertical space.
Now that you can see the npm scripts, double-click on one to run that npm script in a run window at the bottom. Behind the scenes, this creates a temporary run configuration of type npm.
Sometimes your package.json changes and there's a new/changed/deleted npm script. The npm tool window has a Reload scripts button in its mini-toolbar.
One surprising addition: the names of your npm scripts are available as findable actions. If you have a build script and do Find Action, speed searching for run build will let you immediately invoke it.



