Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
knlp-toolkit
Advanced tools
node.js module for extracting words from content using kkma(꼬꼬마 형태소 분석기), hannanum(한나눔 형태소 분석기)
Before you begin , you must have installed the jdk
.
npm install --save knlp-toolkit
You can also use the -g
flag (global) to symlink it into your PATH:
npm install -g knlp-toolkit
If that command fails with an EACCESS
error you may have to run it again with sudo
default kkma
server port is 6000
, and hannanum
server port is 6001
knlp-toolkit server [kkma|hannanum] [port]
knlp-toolkit server kkma 6000
Before test, you have to run knlp-toolkit server
knlp-toolkit test hannanum 테스트 글입니다
knlp-toolkit test kkma 테스트 글입니다
var knlp = require('knlp-toolkit');
// default port is 6000
knlp.kkma({
content: '테스트 글',
host: 'localhost',
port: 6000
}).done(function(result){
console.log(result);
});
// default port is 6001
knlp.hannanum({content:'테스트 글'}).done(function(result){
console.log(result);
});
FAQs
node.js module for extracting words from content using kkma(꼬꼬마 형태소 분석기), hannanum(한나눔 형태소 분석기)
The npm package knlp-toolkit receives a total of 2 weekly downloads. As such, knlp-toolkit popularity was classified as not popular.
We found that knlp-toolkit 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.