This solution provides a word analysis that can be executed over local files or external URLs, among the outputs, the user can find: word count, letters count, spaces count and frequent words count. Using the Single Responsability Principle from the SOLID design pattern, each of these features is isolated in their own functions. This solution requires NodeJS to be at least on version 18.
npm install
npm run build
npm start <file_path_or_url>
npm test
https://raw.githubusercontent.com/facebook/create-react-app/main/packages/cra-template/template/README.md
Check examples folder.
Felyppe Rodrigues da Silva