The main objective of this application is to count the word and its frequency.
- Run
npm ion your terminal. - Run
npm run startto start the project on your machine. - If the application is not automatically open after it compiled, open your preferred browser and go to http://localhost:3000.
- Start typing in the provided textarea to start counting.
- Output below the textarea indicate the current word and the frequency of the word in the textarea.
- The "List of Word" will list down all the word in the textarea and its frequency.
- The results of the word count now can be sort alphabetically and numerically on the number of occurrences.
** Notes
-
This word count method follow the style of Microsoft Word counting where each word, number, or symbol that is seperated by space will count as 1.
-
For word frequency method, the application used case sensetive. For example,
ABCis not the same asabcand it will count seperately. -
Every word will be sort out including number, symbol and emoji.