Open-source packages & Code Security using NPM

Security is a huge concern for everyone. The safety of the code you use is important regardless of you being a beginner or expert in Node.js app development. It is even a professional habit that developers acquire as they grow with experience. Making sure open-source codes are secure is one of the fundamental mission of NPM, with approaches to security at scale to empower NPM users to develop secure code.

With NPM(short for Node Package Manager), you do not need to worry about the safety of your code. NPM provides vulnerability-scanning tools that are built-in your Node.js workflow. These tools are faster and they automatically review every install request you make, and warns you if you try to use unsafe codes. It even analyzes your dependencies trees to check specifically what has security issues and recommend a replacement or fix the issues automatically.

In this article, we will have a look at NPM registry survey statistics, check other developers’ responses to Node.js security practices and identify which tools you need to assess your open-source code safely.

1. NPM registry download statistics

On September 29th, 2019, NPM marked its 10 years of existence. NPM has been used to develop every kind of application i.e. web apps, mobile applications, servers, Internet of things (IoT)/robotic, desktop applications and native mobile applications. This has greatly contributed to the NPM registry popularity. The number of libraries available in the NPM registry influences most developers to choose JavaScript. 

On June 2019, NPM crossed a million-libraries mark. With over 1.3 million libraries currently available, NPM registry is now the largest single collection of open source libraries in the world with more than 12 million developers.

On April 23, 2018, NPM users downloaded five billion packages within the last 7 days of that date. On this day 4 years ago, that figure was 50 million, this means 10,000% growth. The average IP downloads were 2200 packages per month.

Up to now, NPM has recorded tremendous growth with over 20 billion average weekly downloads. As am writing this article, the NPM registry recorded 88,820,279,735 libraries downloads last month. NPM registry is now serving around 125 billion requests at a whopping 6 Petabytes per month.

These statistical testimonies explains the resilience and commitment of NPM to keep the world’s largest community safe by building a chain of fast reliable tools to ensure every JavaScript line of code you write as well as the open-source code you use is safe before you go live.

Image Source

2. Dev statistics response on open-source JavaScript

The following survey findings were carried out by NPM in partnership with the Node.js Foundation and the JS Foundation with more than 16,000 JavaScript/NPM users getting involved. The main aim of this survey was to find out how JavaScript developers understand security in relation to the open-source code they use and code they write. These findings were documented on April 10, 2018. Let us have a quick snippet of this survey report primarily based on some the questions the respondents were asked. Read on the methodology behind this survey.

NOTE: The following questions were picked directly from this survey questionnaires.

2.1. Are you concerned with whether the open-source code you use is secure?.

In this survey, 97% of the respondents used the open-source code. In addition, it turned out 77% of them were worried about the safety of open-source code.

We now have a clear image that most developers are greatly concerned about code security. Interestingly, 19% of the respondent have 10+ years of experience in using JavaScript. Moreover, out of this 81% were concerned about open-source code security.

This concludes that, the more time you utilize JavaScript the more you become concerned about ensuring that the code you use is safe. In short, the attitude to security changes with experience.

2.2. Are you satisfied with the available methods to evaluate the safeness and the quality of open source code?

It is interesting to note that more than half of the JavaScript developers are not convinced with the existing tools for analyzing the security and quality of open-source code, which is very alarming.

Let’s separate this responses and compare the security concern between open source code and the code you write.

87% are concerned with the security of their own code while 77% had the same on open source code. These figures conclude that a great number of JavaScript developers are concerned about security, be it open source or the code they write themselves.

The respondents entrust open source code over their own written code, this is because open-source codes have available and ready tools to make sure the code is secure. Could it be that the majority of JavaScript developers are more confident with open source code over the code they write?

2.3. Which tools and practices do you use to ensure security in your application?

These survey results were divided into two groups, least experienced (>1 year) and most experienced (10 plus years).

From these results experienced groups were:

  • More likely to use testing frameworks.
  • More likely to use linter.
  • More probable to do code review.
  • More likely to carry out external audits of the code.
  • More probable to participate in automated scans to find security vulnerabilities in the code they are using.

If all answers are combined, a measure of how many developers uses some form of security practices on codes depending on experience will be:

  • The best code security practices are common to experienced developers. These practices include code review, linting, and testing.
  • Practices such as testing, linting, code surveys, and security exams are indicators of a polished developer.
  • Most developers are concerned with the safeness of the code they write as well as the open-source code they use.
  • Developers are more confident with the safeness of open source code while having doubt with the security of the code they write themselves.
  • Most developers are not content with the alternatives available/accessible for them to secure their code.

3. Using npm@6 for code, NPM registry, and dependency trees security

npm@6 is a major update to NPM. It includes built-in security features for open source code. npm@6 allows NPM registry users to automatically receive warnings if they attempt to try to use unsafe code. NPM automatically reviews any install requests you make against the Node.js Security Platform database and returns an alert if the code has a vulnerability.

The command npm audit allows you to deeply recursively analyze your dependencies trees to identify any unsafe library and recommend a replacement or upgrade to a newer version. With npm@6, you can run npm audit fix, to automatically fix the recommendations made on your dependencies trees audit. If you are using the older version npm@5, just type npm i -g npm@latest to update to npm@6 and take full advantage of this powerful built-in automation tool for your workflow, along with other enhancements and features.

4. Features of npm@6

1. Speed

npm@6 speed range between 4x to 17x faster compared with npm@4. What this means is that, as a developer, the speed is not just to make exciting things faster, but it allows you to scale your projects beyond what they can do.

2. CI optimization

As a developer, you will spend much less time between pushing a new build, continuing deployment, iterating, and sharing changes. This means continuous integration (CI) and continuous deployment (CD) within your workflow with an additional 2x to 3x faster speed.

3. Automatic resolution and package-lock.json lock file conflicts.

package-lock.json is a generated file. It saves information about your Node.js dependencies you use. package-lock.json file is committed to your Git repository.

package-lock.json has the following advantages

  • Increased reproducibility across teams.
  • Reduced network overhead during installation.
  • It makes it easier to debug an issue in your app.
  • With npm@6, your lock file is more stable across the teams on similar platforms as well as across operating systems unlike the former which had unexpected changes and platform differences.

Use npm install --package-lock-only to create a lock file without having to install into node_modules/.

Image Source

npm@6 goes to an extent of automatically resolving package-lock.json conflicts if you happen to run npm install during a conflicted state. Check to get started with package-lock.json. To make this even more flexible and clear, npm@6 has unleashed npm-merge-drive, which allows you do all the rebasing and merging and other backflips.

To start using npm-merge-drive run $ npx npm-merge-driver install --g and all your future merge and rebase conflicts in your git repository will be resolved in the background. Check to get started with npm-merge-drive.

As you may have noticed, we have introduced npx and we need to know what it is and what it does. Npx is an NPM package runner and it helps you to solve specific problems. With npx, it is easier and smoother to work with npm-based CLI tools.

Image Source

5. Using npx has the following advantages

  • You can run project-local binaries with it. This means you don’t need to install things like grunt-cligulpbower, and tsc globally—you can install them as devDependencies and use npx to run the local versions without hassle (for example, $ npm i -D standard && npx standard).

For more information go to this npm blog post.

  • You can do a one-off, temporary installs of command-line utilities that are rarely ran, such as generators:

 $ npx create-react-app.

  • You can easily try different versions of these tools with a single install if you need to compare them

$ npx standard@8 && npx standard@10.

  • You can even install the shell auto-fallback to not even have to write $ npx... in many cases.

Refer to Npm blog post or npx.

Npx is a great tool that you should try in your daily workflow.

4. Real-time notifications npm@6 allows you to configure your CLI to receive real-time registry and package changes notifications as they happen. Each time a package has changes an HTTP POST payload is sent to the URL you have configured with a hook. Hooks are added to follow a specific package for example if you want to use Express you set up a hook for Express.

There is a lot of very useful information on npm@6, more than what we have discussed in this article. Consider getting started with npm@6 and you will be excited to have a faster and safer tool to build amazing applications with.

npm@6 has an amazing overall security of the NPM ecosystem.

6. Conclusion

  1. The main objective of the survey was to learn more about the JavaScript community and how they interact with NPM concerning code security ethics practices. You may consider looking at the survey results deeper and the methodologies used.
  2. The NPM downloads statistics are native by design. They are counts of HTTP 200 responses that are served tarball files i.e. packages. These numbers include:
    • Automated build servers
    • Downloads by mirrors.
    • Robots packages downloads for analysis.
  3. The NPM registry counts are much larger than the people who just typed npm install(package). This means there some mitigation factors such as.
    • If you had installed a package before: the package usually get installed from your local npm cache, so this is not counted.
    • Build servers usually do not redownload a package they have already used before. Builds that take place in disposable VMs or Docker instances are available in the npm cache of the server.
    • Mirror downloads a specified version of a package one time. They are smart and do not redownload a package they have already seen before.

Since security is everyone’s responsibility, we all need to work together to make a huge step forward to ensure the safety of any code we use in our daily workflow, making sure that the world’s largest community is even safer. I wish all NPM users the best of luck as they continue to build fast, safe, and amazing things.

Related posts:

Building A Node.js Application Using Docker
The History of Node.js
Documenting a Node.js REST API using Swagger
Building a RESTful API with Adonis.js
How To Harness The Machines: Being Productive With Task Runners
Why is Node.js wildly popular among developers?
How to Build a Static site with Gatsby.js
Debugging a Node.js app running in Docker using Nodemon and the Docker extension
Getting Started with Node.js Child Processes
Top Node.js Interview Questions
Testing Node.js Applications
Getting Started with EJS Templating Engine
The Guide To Ethical Scraping Of Dynamic Websites With Node.js And Puppeteer
Understanding Cookies and Implementing them in Node.js
Choosing Between NPM and Yarn
How To Auto-generate Admin Panels for Node.js with AdminBro
Node.js applications following an MVC architecture
How to Build an Authentication API with JWT Token in Node.js
Data Encryption and Decryption in Node.js using Crypto
Developing A Chatbot Using Microsoft’s Bot Framework, LUIS And Node.js
How To Build A Node.js API For Ethereum Blockchain
Writing A Multiplayer Text Adventure Engine In Node.js (Part 1)
Most Useful Node.js Packages
Analyzing Your Company’s Social Media Presence With IBM Watson And Node.js
Node.js - Frontend or Backend?
Understanding HTTP Requests in Node.js
Getting Started with Node.js Module
How to build a real time chat application in Node.js
Implementing Lipa na Mpesa Online using Node.js
Why Node.js is Great for Backend Development?
Creating Secure Password Flows With NodeJS And MySQL
Introduction to hapi.js Framework