Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
nltk-stopwords
Advanced tools
A node module exposing nltk stopwords corpora and provide utility functions for removing stopwords
A node module exposing nltk stopwords corpora and provide utility functions for removing stopwords
npm install --save nltk-stopwords
var stopwords = require('nltk-stopwords')
// let's load english stopwords
var english = stopwords.load('english')
// Remove stopwords from a sentence
stopwords.remove("A sentence can not be without stopwords", english)
// This should output
// 'A sentence without stopwords'
// You can also pass a string of language in the second parameter, `stopwords.remove` will handle stopword loading.
stopwords.remove("J'essaye de trouver un bon example", "french")
// This should output
// "J'essaye trouver bon example"
By default, the sentence is tokenized by whitespace. You can also pass an array of tokenized string instead.
stopwords.remove([ 'A', 'sentence', 'can', 'not', 'be', 'without', 'stopwords' ], english)
// This should output
// [ 'A', 'sentence', 'without', 'stopwords' ]
If a string input is passed, stopwords.remove
will return a string, if an array input is passed instead, the resulting return value will also be an array.
FAQs
A node module exposing nltk stopwords corpora and provide utility functions for removing stopwords
The npm package nltk-stopwords receives a total of 140 weekly downloads. As such, nltk-stopwords popularity was classified as not popular.
We found that nltk-stopwords 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.