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.
nlp-sentiment
Advanced tools
A very tiny, fast and useful tool for sentiment analysis. It works with any language and can also use provided intensifier words!
This is a small and fast library for nlp sentiment analysis which supports any language, or any custom vocabulary. It can also use intensifiers with positive or negative words adding more contrast.
Sentiment uses simple algorithms and basic optimisations to run these tasks in a fast and easy manner. It does not have any dependencies or other libraries and is fully tested to give you confidence.
Test coverage is always kept at > 99%
.
This project is targeting the Node v18 LTS
. Target for ts
is set to ES3
to support all browsers with lower versions.
node
installed with at least v18+
npm ci
Installation is simple:
npm i nlp-sentiment
You have access to all modules exported from the project, but in reality you probably need only one of them.
Here is an example how to use this library in your project:
// import it
import nlpSentiment from "nlp-sentiment";
// create a sentiment object with vocabulary
const sentiment = nlpSentiment()
.withPositiveWords(["good", "brilliant", "amazing"])
.withNegativeWords(["bad", "gross", "horrible"])
.withIntensifierWords(["very"])
.withNegationWords(["not"]);
// and now you are ready to use it for your sentences
const sentencesSentiment = sentiment.analyse([sentence]);
The input interfaces are:
export interface Sentence {
index: number;
tokens: Token[];
}
and for token:
export interface Token {
index: number;
lemma: string;
depType?: string;
depIndex?: number;
}
Then the output would be very similar:
export interface SentenceResult extends Omit<Sentence, "tokens"> {
tokens: TokenResult[];
sentiment: number;
attitude: "positive" | "negative";
}
and token is:
export interface TokenResult extends Token {
sentiment: number;
}
This project has just been made public, thus the documentation will be updated soon to cover all the aspects.
FAQs
A very tiny, fast and useful tool for sentiment analysis. It works with any language and can also use provided intensifier words!
The npm package nlp-sentiment receives a total of 0 weekly downloads. As such, nlp-sentiment popularity was classified as not popular.
We found that nlp-sentiment 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.