
Company News
Socket Named to Rising in Cyber 2026 List of Top Cybersecurity Startups
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.
nounfinder
Advanced tools
Extracts nouns from chunks of text, using the [Wordnik API](http://developer.wordnik.com/docs.html).
Extracts nouns from chunks of text, using the Wordnik API.
In version 2.0+, it's more strict. If a word has multiple uses, it only counts word as a noun if the most common usage (according to Wordnik) is as a noun.
npm install nounfinder
var createNounfinder = require('nounfinder');
var nounfinder = createNounfinder({
wordnikAPIKey: 'kljhasdfkjahsdlfiq89243rsdhflksjdfhaskjhdf982kjhd'
});
var text = 'During this work, the street will be closed to motorists, except for abutters.';
nounfinder.getNounsFromText(text, function done(error, nouns) {
console.log(nouns);
});
Output:
[
'work',
'street',
'will',
'motorist',
'abutter'
]
nounfinder.filterNounsForInterestingness(nouns, 100,
function done(error, interestingNouns) {
console.log(interestingNouns);
}
);
Output:
[
'motorist',
'abutter'
]
The second parameter to filterNounsForInterestingness is a number that indicates how uncommon a word needs to be to be considered "interesting". The lower the number, the more uncommon the word needs to be.
First, create a config.js file in the root directory that has your Wordnik API like this:
module.exports = {
wordnikAPIKey: 'kljhasdfkjahsdlfiq89243rsdhflksjdfhaskjhdf982kjhd'
};
Then, run tests with make test.
MIT.
FAQs
Extracts nouns from chunks of text, using the [Wordnik API](http://developer.wordnik.com/docs.html).
We found that nounfinder 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.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.

Research
Socket detected 84 compromised TanStack npm package artifacts modified with suspected CI credential-stealing malware.

Security News
A dispute over fsnotify maintainer access set off supply chain alarms around one of Go’s most widely used filesystem libraries.