
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
speakeasy-nlp
Advanced tools
Simple Natural Language Processing
npm install speakeasy-nlp
*.classify
: Roughly determines the action, subject, and owner (posessive object) of a sentence. As of 0.2.2 it also includes verbs, nouns, and adjectives*.sentiment
: A collection of methods to approximate the positive/negative affect of a statement (relative to the whole statement)*.closest
: Uses levenshtein distance to find the best match for a word given an array
var speak = require("./speakeasy-nlp");
// Analyze sentences at a basic level
// ------------------------------------- //
speak.classify("What is your name?") //=> { action: "what", owner: "listener", subject: "name" }
speak.classify("Do you know what time it is?") //=> { action: "what", owner: "it", subject: "time" }
// Sentiment analysis
// ------------------------------------- //
speak.sentiment.negativity("I hate your guts") //=> { score: 1, words: [hate] }
speak.sentiment.positivity("I love you") //=> { score: 1, words: [love] }
speak.sentiment.analyze("I love you, but you smell something aweful")
// (Negative scores dictate a stronger influence of negative words)
//=> { score: -1, positive: { ... }, negative: { ... } }
// Closest word
// ------------------------------------- //
speak.closest("node", ["foo", "nodejs", "baz"]) //=> "nodejs"
The goal of this project is not to be the next final solution for natural language processing. There are plenty of other projects that do a significantly better job of this. SpeakEasy spawned out of another of my projects, Nodebot, as a method of processing user input to simulate the illusion of intelligence.
SpeakEasy's goal is to provide a library for NodeJS to perform simple language processing actions that perform well for 70%-80% of all cases.
speakeasy
is released under the MIT License.
0.2.13
for..in
being used instead of
forEach.FAQs
A simple natural language processor for node javascript.
The npm package speakeasy-nlp receives a total of 426 weekly downloads. As such, speakeasy-nlp popularity was classified as not popular.
We found that speakeasy-nlp 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.