Click here to Skip to main content
15,867,453 members
Articles / Web Development / Node.js

npm vs npx

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
20 Oct 2018CPOL5 min read 13.2K   4   2
A look at whether there are any benefits of using npx instead of npm

Introduction

We all are using npm as our package manager, it is easy, right? But with version npm@5.2.0, when you install the npm, it installs a new package called npx. Have you ever thought what it is? And why it is needed? Are there any benefits of using npx instead of npm? I know you were trying to find the answer for the above questions and at the end, you landed up on this page. I will try to answer those questions for you. And at the end of the article, I am sure that you will get the answer to your questions. I hope you will find this post useful.

Source Code

The source code can be found here.

Background

I was trying to create a React application and as you know, we can create a React application very easily with the help of the react-app command. But when I visited the official Github documentation of the create React app, it is mentioned there that we can either use npx or npm. And I was just wondering what is the difference? And that question changed to this article.

What Are We Going to Do

We will be creating two applications and install the package mocha in both applications so that we can run some tests. If you don't know what is mocha, visiting the official website wouldn't be a bad idea.

  1. mocha-example-npm
  2. mocha-example-npx

Coding with mocha-example-npm Application

Let's try to create a new folder named mocha-example-npm and open it in my favorite code editor, which is vscode. Once you open the folder, you can install mocha by running this command:

npm install mocha

Let's create a folder called test:

mkdir test

Let's create a file called test.js.

code test/test.js

And paste the below sample test in it.

JavaScript
var assert = require('assert');
describe('Array', function() {
  describe('#indexOf()', function() {
    it('should return -1 when the value is not present', function() {
      assert.equal([1,2,3].indexOf(4), -1);
    });
  });
});

By seeing the code, you might have already found that the test will pass as the indexOf (4) is going to be -1. Now how do we check this? So to run the test, we need to run mocha right? Let's do it.

If you just type mocha in the terminal, you will get an error as below:

mocha : The term 'mocha' is not recognized as the name of a cmdlet, function, 
        script file, or operable program. Check the spelling of the name, or if a path
        was included, verify that the path is correct and try again.
At line:1 char:1
+ mocha
+ ~~~~~
    + CategoryInfo          : ObjectNotFound: (mocha:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

It is saying that mocha is not a recognized command. To fix this, you have the below three options.

  1. Install mocha globally, so that the command will be recognized globally:
    • npm@6.1.0 C:\Program Files (x86)\nodejs\node_modules\npm
      PS F:\SibeeshPassion\Articles\NPMvsNPX\npm\mocha-example-npm> npm i mocha -g
      C:\Users\Sibeesh\AppData\Roaming\npm\mocha -> 
         C:\Users\Sibeesh\AppData\Roaming\npm\node_modules\mocha\bin\mocha
      C:\Users\Sibeesh\AppData\Roaming\npm\_mocha -> 
         C:\Users\Sibeesh\AppData\Roaming\npm\node_modules\mocha\bin\_mocha
      + mocha@5.2.0
      added 24 packages from 436 contributors in 3.458s
      PS F:\SibeeshPassion\Articles\NPMvsNPX\npm\mocha-example-npm> npm list -g mocha
      C:\Users\Sibeesh\AppData\Roaming\npm
      `-- mocha@5.2.0
      
      PS F:\SibeeshPassion\Articles\NPMvsNPX\npm\mocha-example-npm> mocha
      
        Array
          #indexOf()
            √ should return -1 when the value is not present
      
        1 passing (14ms)
      
      PS F:\SibeeshPassion\Articles\NPMvsNPX\npm\mocha-example-npm>
  2. Use the path to mocha from node_modules:
    • ./node_modules/mocha/bin/mocha
  3. Configure test in your package.json file as follows:
    • JavaScript
      "scripts": {
          "test": "mocha"
        }

      so that you can run npm test command, and it will take the mocha files from your node_modules folder.

Coding with mocha-example-npx Application

So, we have understood the problem we have using npm and we have three solutions to fix. Now, let's try using the npx instead of npm. Let's open the folder and run npx mocha. The result is a warning right as it is trying to find the folder test in the solution and then the tests.

npx: installed 24 in 6.203s
Warning: Could not find any test files matching pattern: test
No test files found

Let's create a test folder, test.js file and write a test in it.

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> mkdir test

    Directory: F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx

Mode                LastWriteTime         Length Name
----                -------------         ------ ----
d-----       20-10-2018  06:26 PM                test


PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> code test/test.js
PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx>

Let's run the command npx mocha now, and you will get the output as below:

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> npx mocha
npx: installed 24 in 4.142s

  Array
    #indexOf()
      √ should return -1 when the value is not present

  1 passing (12ms)

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx>

As you can see, our tests are passed. But are you seeing any node_modules folder or any packages are being added to your solution?

What is npx

Now let's just summarize what is npx. It is an npm package runner. We all know that we are installing the packages to our solution from the location called npm registry and use it. And the npx has been designed in a way that we can directly use the package from the npm registry without even installing it in our solution. You may be thinking why it is needed?

Let me give you an example, as I mentioned in the background section of this article, we can create a simple react application with the help of Create-React-App from FaceBook. And this is used only for creating the application, and once we create the application, and we no longer need this. If you use npm, you will have to install this package either globally or locally before you use this, or else you will get an error.

Isn't it good, if we can just use this create-react-app package from the npm registry and create the application in our local machine? And that's where npx stands. With the help of npx, we can reduce the size of our node_modules and I strongly believe that this is a huge benefit.

It is smart enough to identify whether the package you are trying to get from the npm registry is already there in your machine, either globally or locally. If the package is available in your machine, it will take it from there.

What if Mocha is Installed Globally or Locally and We Run the Command npx Mocha?

Let's try to install mocha globally and run the command npx mocha. Before that, let's just make sure that we haven't installed mocha yet.

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> npm list mocha
mocha-example-npx@1.0.0 F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx
`-- (empty)

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> npm list -g mocha
C:\Users\Sibeesh\AppData\Roaming\npm
`-- (empty)

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx>

Now let's just install mocha globally:

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> npm i mocha -g
C:\Users\Sibeesh\AppData\Roaming\npm\mocha -> 
   C:\Users\Sibeesh\AppData\Roaming\npm\node_modules\mocha\bin\mocha
C:\Users\Sibeesh\AppData\Roaming\npm\_mocha -> 
   C:\Users\Sibeesh\AppData\Roaming\npm\node_modules\mocha\bin\_mocha
+ mocha@5.2.0
added 24 packages from 436 contributors in 3.033s

Try to run npx mocha again:

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx> npx mocha

  Array
    #indexOf()
      √ should return -1 when the value is not present

  1 passing (12ms)

PS F:\SibeeshPassion\Articles\NPMvsNPX\npx\mocha-example-npx>

Did you see any difference, you are not getting any information related to the installation (for example npx: installed 24 in 4.142s).

Conclusion

Thanks a lot for reading. I will come back with another post on the same topic very soon. Did I miss anything that you think is needed? Could you find this post useful? I hope you liked this article. Please share me your valuable suggestions and feedback.

Your Turn. What Do You Think?

A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, ASP.NET Forum instead of commenting here. Please post your question in the Comments section below and I’ll definitely try to help if I can.

History

  • 20th October, 2018: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
I am Sibeesh Venu, an engineer by profession and writer by passion. I’m neither an expert nor a guru. I have been awarded Microsoft MVP 3 times, C# Corner MVP 5 times, DZone MVB. I always love to learn new technologies, and I strongly believe that the one who stops learning is old.

My Blog: Sibeesh Passion
My Website: Sibeesh Venu

Comments and Discussions

 
SuggestionIntroducing npx: an npm package runner Pin
Paulus Koshivi20-Oct-18 22:18
Paulus Koshivi20-Oct-18 22:18 
QuestionGood post Pin
Lucky Sharma20-Oct-18 7:32
Lucky Sharma20-Oct-18 7:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.