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/07_student_management_system

v1.2.2

Published

This project is a simple console-based Student Management System written in TypeScript. It includes features such as adding new students, generating unique student IDs, enrolling students in courses, viewing student records, paying tuition fees, and displ

Downloads

16

Readme

Student Management System in Typescript

This project is a simple console-based Student Management System written in TypeScript. It includes features such as adding new students, generating unique student IDs, enrolling students in courses, viewing student records, paying tuition fees, and displaying student details. The project utilizes chalk for colored terminal output and inquirer for interactive command-line prompts.

Features

  1. User Data Saving: Save and load student data to/from a JSON file.
  2. Add Student: Add new students with unique IDs, default balance and other details.
  3. Enroll in Courses: Enroll students in available courses.
  4. View Balance: Check the tuition balance of a student.
  5. Pay Tuition Fees: Pay the tuition fees for a student.
  6. Show Student Status: Display the details of a student, including name, ID, courses enrolled, and balance.
  7. View All Students: View the details of all students.
  8. Interactive CLI: Uses inquirer for interactive prompts and chalk for colored output.

Usage

Adding a Student

  1. Run the application:
    'tsc && node index.js'
  2. Follow the prompts to add a new student by providing the necessary details such as name, enrollment year, major, etc. Note: A student enrolled has default balance of 1000 in his/her cart

Paying Tuition Fees

  1. Choose the option to pay tuition fees.
  2. Follow the prompts to select the student and enter the payment amount.

Viewing Student Records

  1. Choose the option to view student records.
  2. Follow the prompts to select the student whose records you want to view.

Viewing All Students

  1. Choose the option to view all students.
  2. The details of all students will be displayed.

Example Interaction

Welcome to the Student Management System!

? What would you like to do? (Use arrow keys)
❯ Add a new student
  Pay tuition fees
  View student records
  View all students
  Exit

? Enter student's name: John Doe
? Enter student's ID in format (00000): 10001
? Enter student's enrollment year in format (2024): 2024
? Enter Major: Computer Science

Student added successfully!

Run the Application on CLI:

npm i @alpha_anas/07_student_management_system npx @alpha_anas/07_student_management_system

(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 "07_Student_Management_System"

  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",

## 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/07_Student_Management_System`
     `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

     ```