
Research
/Security News
GlassWASM: WebAssembly Malware Found in Trojanized Open VSX Extensions
The trojanized extensions use TinyGo-compiled WebAssembly and Solana transaction memos to resolve command-and-control infrastructure.
@enjoyjs/node-mecab
Advanced tools
MeCab wrapper for Node.js
MeCabがインストールされている必要があります。
npm i @enjoyjs/node-mecab
import { analyze } from "@enjoyjs/node-mecab";
const result = await analyze("こんにちは世界");
console.log(result);
こんにちは 感動詞,*,*,*,*,*,こんにちは,コンニチハ,コンニチワ
世界 名詞,一般,*,*,*,*,世界,セカイ,セカイ
EOS
import { analyzeSync } from "@enjoyjs/node-mecab";
const result = analyzeSync("こんにちは世界");
console.log(result);
import { tokenize } from "@enjoyjs/node-mecab";
const result = await tokenize("こんにちは世界");
console.log(result);
[
# 省略
{
id: 12,
surface: 'こんにちは',
feature: {
pos: '感動詞',
posSubs: [Array],
conjugatedType: undefined,
conjugatedForm: undefined,
basicForm: 'こんにちは',
reading: 'コンニチハ',
pronunciation: 'コンニチワ'
},
startPosition: 0,
endPosition: 15,
rcAttr: 3,
lcAttr: 3,
posid: 2,
charType: 6,
stat: 'NORMAL',
isbest: true,
alpha: 0,
beta: 0,
prob: 0,
cost: 4033,
_: []
},
{
id: 30,
surface: '世界',
feature: {
pos: '名詞',
posSubs: [Array],
conjugatedType: undefined,
conjugatedForm: undefined,
basicForm: '世界',
reading: 'セカイ',
pronunciation: 'セカイ'
},
startPosition: 15,
endPosition: 21,
rcAttr: 1285,
lcAttr: 1285,
posid: 38,
charType: 2,
stat: 'NORMAL',
isbest: true,
alpha: 0,
beta: 0,
prob: 0,
cost: 10546,
_: []
},
# 省略
]
import { tokenizeSync } from "@enjoyjs/node-mecab";
const result = tokenizeSync("こんにちは世界");
console.log(result);
import { wakatsu } from "@enjoyjs/node-mecab";
const result = await wakatsu("こんにちは世界");
console.log(result);
[ [ 'こんにちは', '世界' ] ]
import { wakatsuSync } from "@enjoyjs/node-mecab";
const result = wakatsuSync("こんにちは世界");
console.log(result);
Issue、Pull requestは日本語で構いません。 不具合等ありましたらPull requestを投げていただけると幸いです。
FAQs
MeCab wrapper for Node.js
We found that @enjoyjs/node-mecab 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
The trojanized extensions use TinyGo-compiled WebAssembly and Solana transaction memos to resolve command-and-control infrastructure.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.