
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
commonform-phrase-annotator
Advanced tools
create Common Form annotators from lists of words and phrases
The module exports a single function that takes an array of strings and a function for generating annotations, returning an annotator function to apply to Common Forms.
var phrases = ['thereof', 'whereof']
The annotation function receives the form in which a string was found, its path within the overall form, and the string that matches. It must return a Common Form Annotations.
function implementation (form, path, string) {
return {
message: '"' + string + '" is archaic',
path: path,
source: 'example-annotator',
url: null
}
}
var phraseAnnotator = require('commonform-phrase-annotator')
var annotator = phraseAnnotator(phrases, implementation)
The library does the job of finding matches and calculating paths.
var assert = require('assert')
assert.deepStrictEqual(
annotator({ content: ['all rights thereof and whereof'] }),
[
{
message: '"thereof" is archaic',
path: ['content', 0],
source: 'example-annotator',
url: null
},
{
message: '"whereof" is archaic',
path: ['content', 0],
source: 'example-annotator',
url: null
}
]
)
FAQs
create Common Form annotators from lists of words and phrases
The npm package commonform-phrase-annotator receives a total of 8 weekly downloads. As such, commonform-phrase-annotator popularity was classified as not popular.
We found that commonform-phrase-annotator 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.