
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@flowaccount/node-icu-tokenizer
Advanced tools
String Tokenizer for Node.js using ICU's BreakIterators
Node.js String Tokenizer using ICU's BreakIterator
See http://userguide.icu-project.org/boundaryanalysis for a rundown on how the BreakIterator works.
Install the NPM module:
npm install @flowaccount/node-icu-tokenizer
Call the tokenizer:
new Tokenizer().tokenize('pretty quiet out there eh?');
Receive an array of tokens with boundaries:
[ { token: 'pretty', bounds: { start: 0, end: 6 } },
{ token: 'quiet', bounds: { start: 7, end: 12 } },
{ token: 'out', bounds: { start: 13, end: 16 } },
{ token: 'there', bounds: { start: 17, end: 22 } },
{ token: 'eh', bounds: { start: 23, end: 25 } },
{ token: '?', bounds: { start: 25, end: 26 } } ]
locale
ignoreWhitespaceTokens
This module is based off of node-icu-wordsplit, which also uses the BreakIterator for tokenizing. [https://github.com/chakrit/node-icu-wordsplit] (https://github.com/chakrit/node-icu-wordsplit)
FAQs
String Tokenizer for Node.js using ICU's BreakIterators
The npm package @flowaccount/node-icu-tokenizer receives a total of 53 weekly downloads. As such, @flowaccount/node-icu-tokenizer popularity was classified as not popular.
We found that @flowaccount/node-icu-tokenizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.