Basic CRUD Web Application

This is a basic CRUD (Create, Read, Update, Delete) web application developed as part of the internship task for Softnotions academic internship.

Installation

To run this app locally, you need to have the following prerequisites installed on your system:

  • Node.js
  • npm (Node Package Manager)

Steps:

  1. Clone this repository to your local machine:

    git clone https://github.com/VishnuSudheer/Softnotions-internship.git
  2. Navigate to the server directory and install the required dependencies:

    cd server
    npm install
  3. Navigate to the client directory and install the required dependencies:

    cd client
    npm install

Running the Project

Once you have installed the dependencies, you can run the project by following these steps:

  1. Start the server:

    cd server
    node index.js
  2. Start the client:

    cd client
    npm run start
  3. Open your web browser and go to http://localhost:3000 to access the application.