Almost complete English verb list.
npm install verb-corpus
> Almost COMPLETE English verb list.
There are thousands of regular verbs in English. This is a almost COMPLETE list of common regular verbs.
Note that there are some spelling variations in American English (for example, practise becomes practice in American English).
``sh`
npm install --save verb-corpus
`javascript
/* @type {{ programming: string[]; lexicon: string[]; complete: string[]; }} /
const { programming, lexicon, complete } = require('verb-corpus');
// Programming verbs
console.log(programming.length); // => 958
// Eric Brill's English lexicon verbs.
// The lexicon data is processed from POS tagging lib https://github.com/dariusk/pos-js.
console.log(lexicon.length); // => 3513
// Complete English verbs generated by union the programming and lexicon verbs and the 2 npm packages "english-verbs-gerunds" and "english-verbs-irregular" 1139
console.log(complete.length); // => 4249
`
- ā
Super fast š because all the verbs are pre-built for performance and no run cost suffered.
- ā
Almost COMPLETE English verb list.
- Programming commonly used verbs.
- POS Tagging database from Eric Brill's English lexicon verbs.
- Verbs from 2 npm packages "english-verbs-gerunds" and "english-verbs-irregular"
`sh`
npm test # Powered by Vitest
`sh``
npm run pub:patch/minor/major
š¤ legend80s
* Github: @legend80s
Give a āļø if this project helped you!
*
_This README was generated with ā¤ļø by readme-md-generator_