Skip to content

assertchris/ellison-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ellison

Ellison is a simple library that helps identify complex sentences and poor word choices. It uses similar heuristics to Hemingway, but it doesn't include any calls to third-party APIs or LLMs. Just a bit of JavaScript.

You can install it with:

npm i @assertchris/ellison

...And, use it with:

const {
    getSentenceDifficulty,
    getPassivePhrases,
    getAdverbPhrases,
    getComplexPhrases,
    getQualifiedPhrases,
} = require('@assertchris/ellison')

getSentenceDifficulty('This is a paragraph of text. It may include some moderately complex sentences, with slightly complex words. It might also include verbose sentences that tax the brain, tire the eyes, and exhaust the brain; all in an attempt to make the writer sound amazing.')

//  => [
//   {text: 'This is...of text', type: 'simple'}
//   {text: 'It may...complex words', type: 'moderate'}
//   {text: 'It might...sound amazing', type: 'complex'}
// ]

getPassivePhrases('This sentence may have been written by a corgi')

// => [
//   {text: 'been written', type: 'passive'} 
// ]

Feel free to submit PRs for more phrases and words that interest you. I have no interest in supporting non-english languages at this time.

About

Simple library that helps identify complex sentences and poor word choices.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors