readeasy
Version:
Easily test the readability of a text and suggest areas of improvement.
23 lines (17 loc) • 871 B
JavaScript
const readeasy = require('../index.js')
const fs = require('fs')
let text1 = "Always use shorter words where possible."
let text2 = `First Paragraph. This is to test the readability of text. Right now it only works for entire blocks of text. Soon I will fix it to divide by sentences so that it can provide hints about specific sentences that need might need simplifying.
This is the text to a second paragraph. This is to test the readability of text. Right now it only works for entire blocks of text. Soon I will fix it to divide by sentences so that it can provide hints about specific sentences that need might need simplifying.`
readeasy(text2)
.then( res => {
let json = JSON.stringify(res)
return json
})
.then( res => {
fs.writeFile('./testfile.json', res, 'utf8', function (err) {
if (err) {
return console.log(err);
}
})
})