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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@hossam954074/cli_project

v1.0.2

Published

A simple CLI tool for managing programming courses with add, list, and delete functionality

Readme

CLI Course Manager

A simple command-line interface (CLI) tool for managing programming courses. Built with Node.js using Commander.js and Inquirer.js.

📦 Installation

You can install this package globally from npm:

npm install -g @hossam954074/cli_project

Or run it directly with npx:

npx @hossam954074/cli_project

🚀 Usage

Available Commands

The CLI provides the following commands to manage your course collection:

Add a Course

cli_project add
# or use the alias
cli_project a

This command will prompt you to enter:

  • Programming language (default: JavaScript)
  • Course title (default: js)
  • Course price (default: 100)
  • Course discount (default: 0)

List All Courses

cli_project list
# or use the alias
cli_project l

Displays all saved courses in a nice table format.

Delete a Course

cli_project delete
# or use the alias
cli_project d

Prompts you to enter the index of the course you want to delete.

Help

cli_project --help

Shows all available commands and their descriptions.

Version

cli_project --version

Shows the current version of the CLI tool.

📋 Example Workflow

# Add a new course
$ cli_project add
? What is your favorite programming language? Python
? What is course title? Advanced Python Programming
? What is course price? 150
? What is course discount? 10
Course was added

# List all courses
$ cli_project list
┌─────────┬──────────────────────┬─────────────────────────────┬─────────────────┬────────────────────┐
│ (index) │ PROGRAMMING_LANGUAGE │        COURSE_TITLE         │  COURSE_PRICE   │  COURSE_DISCOUNT   │
├─────────┼──────────────────────┼─────────────────────────────┼─────────────────┼────────────────────┤
│    0    │       'Python'       │ 'Advanced Python Programming' │      '150'      │        '10'        │
└─────────┴──────────────────────┴─────────────────────────────┴─────────────────┴────────────────────┘

# Delete a course
$ cli_project delete
? Enter the index of the course to delete: 0
Course deleted successfully.

🛠️ Development

Prerequisites

  • Node.js (version 14 or higher)
  • npm

Dependencies

  • commander - For building command-line interfaces
  • inquirer - For interactive command-line prompts

Project Structure

cli_project/
├── index.js          # Main CLI entry point
├── inquirer.js       # Interactive prompts logic
├── manage_file.js    # File operations (save, list, delete)
├── data.json         # Course data storage
├── package.json      # Project configuration
└── README.md         # Documentation

Local Development

  1. Clone the repository
  2. Install dependencies:
    npm install
  3. Link the package locally:
    npm link
  4. Now you can use cli_project command locally

📄 Data Storage

Course data is stored in a local data.json file in JSON format. Each course contains:

  • PROGRAMMING_LANGUAGE: The programming language
  • COURSE_TITLE: The title of the course
  • COURSE_PRICE: The price of the course
  • COURSE_DISCOUNT: Any discount applied

🔄 Version History

  • 1.0.1 - Current version with scoped package name
  • 1.0.0 - Initial release

📝 License

ISC

👤 Author

@hossam954074

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📞 Support

If you encounter any issues or have questions, please create an issue on the repository.


Happy course managing! 🎓