Tool to count words in Scientific papers
I’ve created it to count all keywords from scientific paper using a .bibtext file.
It will help you generating an output as a json contains all grouped words to be used in a quantitative analyse of paper.
Ps: The installation is done by npm
Make the initial config with npm install
on root folder of project
All commands must be executed from command line on project folder
Execute the command npm run build
Run the command node build/index.js --path fullPathOfBibTextFile
Example:
node build/src/index.js --algorithm wordCount --path fullPath/collection.bib
[
{
"blockchain": 62
},
{
"bitcoin": 12
},
{
"security": 9
},
{
"ethereum": 8
}
]