
Research
SAP CAP npm Packages Hit by Mini Shai-Hulud Supply Chain Attack
Compromised SAP CAP npm packages download and execute unverified binaries, creating urgent supply chain risk for affected developers and CI/CD environments.
common-words
Advanced tools
Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.

Updated list (JSON) of the 100 most common words in the english language. Useful for excluding these words from arrays.
From https://en.wikipedia.org/wiki/Most_common_words_in_English
Example:
[
{
"rank": "1",
"word": "the"
},
{
"rank": "2",
"word": "be"
},
{
"rank": "3",
"word": "to"
},
...
]
Install with npm:
npm i common-words --save-dev
var common = require('common-words');
function removeCommonWords(words, common) {
common.forEach(function(obj) {
var word = obj.word;
while (words.indexOf(word) !== -1) {
words.splice(words.indexOf(word), 1);
}
});
return words;
};
removeCommonWords(yourWords, common);
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors. Released under the MIT license
This file was generated by verb-cli on April 13, 2014.
FAQs
Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.
We found that common-words demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Compromised SAP CAP npm packages download and execute unverified binaries, creating urgent supply chain risk for affected developers and CI/CD environments.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.