项目作者: thiagoolsilva

项目描述 :
Tool to count words in Scientific papers
高级语言: TypeScript
项目地址: git://github.com/thiagoolsilva/wordCount.git
创建时间: 2018-12-13T04:38:17Z
项目社区:https://github.com/thiagoolsilva/wordCount

开源协议:Other

下载


Description

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

Base Installation

1. Initial Upgrade

Make the initial config with npm install on root folder of project

2. Export your collection of articles from mendeley or any program that exports all articles in bibtext file

Running the project

All commands must be executed from command line on project folder

1. Build the project

Execute the command npm run build

2. Running the project

Run the command node build/index.js --path fullPathOfBibTextFile

Example:
node build/src/index.js --algorithm wordCount --path fullPath/collection.bib

3. Analyse the json output

  1. [
  2. {
  3. "blockchain": 62
  4. },
  5. {
  6. "bitcoin": 12
  7. },
  8. {
  9. "security": 9
  10. },
  11. {
  12. "ethereum": 8
  13. }
  14. ]