Skip to content

kamesh07032005/Inventory-Management-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Inventory Management System

A comprehensive full-stack web application for managing inventory, suppliers, products, and orders. This system helps businesses track their inventory levels, manage supplier relationships, and process orders efficiently.

Version Tech Stack

👋 Meet Our Team

This project is proudly developed by: Kamesh M Roshne priya V Dharashini N

We're excited to bring you this inventory management application and welcome your feedback!

💼 Overview

Inventory Management System is a modern platform that bridges the gap between inventory tracking and business operations. Built with Angular, Node.js (TypeScript), and MySQL, this application offers a seamless experience for managing products, suppliers, and orders with comprehensive tracking capabilities.

✨ Key Features

For Inventory Managers

  • Product Management - Add, update, delete, and view products
  • Supplier Management - Track supplier information and relationships
  • Inventory Tracking - Monitor stock levels and receive low stock alerts
  • Order Processing - Create and manage purchase orders

🛠️ Technology Stack

Frontend

  • Framework: Angular 16
  • UI Library: Angular Material
  • Language: TypeScript
  • State Management: Angular Services

Backend

  • Runtime: Node.js
  • Framework: Express.js
  • Language: TypeScript
  • ORM: TypeORM
  • API: RESTful architecture

Database

  • RDBMS: MySQL

📁 Project Structure

.
├── backend/                # Server-side code
│   ├── src/
│   │   ├── controllers/    # API route handlers
│   │   ├── entities/       # Database models
│   │   ├── routes/         # API route definitions
│   │   └── server.ts       # Entry point
│   ├── .env                # Environment variables
│   └── package.json        # Backend dependencies
│
└── frontend/              # Client-side application
    ├── src/
    │   ├── app/           # Angular components
    │   ├── assets/        # Static resources
    │   └── environments/  # Environment configurations
    ├── angular.json       # Angular configuration
    └── package.json       # Frontend dependencies

🚀 Installation Guide

Prerequisites

  • Node.js (v14 or higher)
  • MySQL (v5.7 or higher)
  • Angular CLI
  • Git

Backend Setup

  1. Navigate to the backend directory:

    cd Backend
    
  2. Install dependencies:

    npm install
    
  3. Configure the database connection in the .env file:

    DB_HOST=localhost
    DB_USER=your_mysql_username
    DB_PASSWORD=your_mysql_password
    DB_NAME=inventory_management
    PORT=3000
    
  4. Start the server:

    npm run dev
    

    The server will run on http://localhost:3000

Frontend Setup

  1. Navigate to the frontend directory:

    cd Frontend
    
  2. Install dependencies:

    npm install
    
  3. Start the development server:

    ng serve
    

    The application will be available at http://localhost:4200

📊 API Reference

For detailed API documentation, please refer to our [API Documentation](https://github.com/kamesh07032005/Inventory-Management-System/tree/main/Backend#readme)

The backend will be available at http://localhost:3000

Inventory Endpoints

Method Endpoint Description
GET /api/inventory Get all inventory items with supplier information
POST /api/inventory Create a new inventory item
GET /api/inventory/:id Get a specific inventory item by ID
PUT /api/inventory/:id Update inventory item details
DELETE /api/inventory/:id Delete an inventory item

Supplier Endpoints

Method Endpoint Description
GET /api/suppliers Get all suppliers
POST /api/suppliers Create a new supplier
GET /api/suppliers/:id Get a specific supplier by ID with related inventory items
PUT /api/suppliers/:id Update supplier details
DELETE /api/suppliers/:id Delete a supplier

📋 Application Routes

Path Component Description
/inventory InventoryListComponent Main page displaying all inventory items
/inventory/new InventoryFormComponent Form to add a new inventory item
/inventory/edit/:id InventoryFormComponent Edit an existing inventory item
/inventory/:id InventoryDetailsComponent View detailed inventory information
/suppliers SupplierListComponent View all suppliers
/suppliers/new SupplierFormComponent Form to add a new supplier
/suppliers/edit/:id SupplierFormComponent Edit an existing supplier
/suppliers/:id SupplierDetailsComponent View detailed supplier information

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published