npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@alpha_anas/06_word_counter

v1.0.2

Published

This project is a simple word counter application written in TypeScript. The application reads a text file (`input.txt`) and counts the number of words in it. It includes professional-level features such as:

Downloads

4

Readme

Word Counter in Typescript

Overview

This project is a simple word counter application written in TypeScript. The application reads a text file (input.txt) and counts the number of words in it. It includes professional-level features such as:

  1. Ignoring multiple spaces.
  2. Supporting punctuation.
  3. Handling new lines.
  4. Generating a detailed report.

Features

  1. Word Counting: Counts the number of words in a given text file.
  2. Detailed Report: Provides a breakdown of word counts, unique words, and punctuation handling.
  3. Error Handling: Ensures the input is valid and handles edge cases.

Run the Application on CLI:

npm i @alpha_anas/06_word_counter npx @alpha_anas/06_word_counter

(and the game will start running on your Command Prompt / Terminal)

Compiling and Running on IDE

when all the dependencies (as mentioned below) are successfully installed you can build and run the project using the below mentioned command : tsc && node index.js

Prerequisites

Before running the application, ensure you have the following installed:

Installation

  1. Clone the repository:

    git clone "https://github.com/AlphaAnas/12-Typescript-Projects-of-PIAIC-course" cd "06_Word_Counter"

  2. Install the dependencies:

    npm install (to install node modules folder) npm install inquirer npm i --save-dev @types/inquirer tsc --init (to install tsconfig.json) npm init -y (to install package.json) (keep pressing enter to make a general tsconfig.json file)

Important changes to make (note I have already made this following changes for you, so you do not have to make the same, however remember to make the same in your own version)

In tsconfig.json file on line No.:14 change the *target* to *ESNext* i.e. `"target": "ESNext"` 
also tsconfig.json file on line No.:28 change the *module* to *NodeNext* i.e. `"module": "NodeNext"`
also tsconfig.json file on line No.:28 change the *moduleResolution* to *NodeNext* i.e. `"moduleResolution": "NodeNext"`

Then in package.json file on line No.:10 after ( "main": "index.js",) enter the following two lines
"bin": "index.js",
"type": "module",
### Example Interaction

1. **User enters their input in a .txt file in the same folder**:

Welcome to the Wordcounter APP

  1. Enter the file name you entered the input in (.txt only)
  2. (system checks if such file exists)
  3. if yes: the system runs the process and gives ,word count, character count and sentence count.
  4. if no: the system generates relevant error .


## Development

### Run/ Edit the Application on IDE:

     Clone or download the zip of the folder from : `https://github.com/AlphaAnas/12-Typescript-Projects-of-PIAIC-course/tree/main/06_Word_Counter`
     `Then run the following commands to install the DEPENDENCIES (if already not installed, however i have already installed and pushed the following for you in the repository): `

     ```
             tsc --init
             npm init -y
             npm install inquirer
             npm i --save-dev @types/inquirer

     ```