1.0.61 • Published 4 years ago

text-analyser v1.0.61

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

Text Analyser

What Text Analyser is :grey_question:

Text Analyser is lightweight library to analyse basic informations about text files like number of words, signs, spaces and empty lines.

Getting started :rocket:

Requirements

To use this module you need to install latest version of Node on your computer.

Installation :sparkles:

    npm install text-analyser

:boom: Ready to use! :smiley:

How to use :grey_question:

import { analyse } from "text-analyser";

const pathToTxtFile = "txtFile.txt";

const informationsAboutTxtFile = analyse(pathToTxtFile);

That's all :sunglasses:

Variable informationsAboutTxtFile shoud look like this:

    { signs: X, spaces: X, words: X, lines: X, emptyLines: X, notEmptyLines: X }

Thank you for using this module. :blush:

Github Repository