Skip to content

Priyanshurajanand/Task-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Manager Application

Overview

This repository contains a Task Manager application built using React. The application allows users to manage their tasks efficiently by adding, editing,marking complete-incomplete and deleting tasks. It also provides a simple and intuitive user interface for a seamless task management experience.

Table of Contents

Prerequisites

Before you begin, ensure you have the following prerequisites installed on your machine:

  • Node.js: https://nodejs.org/
  • npm (Node Package Manager): Typically comes with Node.js installation.

Getting Started

Follow these steps to run the Task Manager application locally:

  1. Clone the repository to your local machine:

    git clone https://github.com/Priyanshurajanand/Task-Manager.git
  2. Install the project dependencies:

    npm install
  3. Start the development server:

    npm start
  4. Open your browser and visit http://localhost:3000 to view the Task Manager application.

Project Structure

The project structure is organized as follows:

Task-Manager/
│
├── public/
│ ├── index.html
│ └── ...
│
├── src/
│ ├── components/
│ │ ├── Header.js
│ │ ├── Todo.js
│ │ └── Footer.js
│ ├── App.js
│ ├── index.js
│ └── ...
│
├── .gitignore
├── package.json
└── ...
  • public/: Contains the HTML template and other static assets.
  • src/: Contains the React components and application logic.
  • .gitignore: Specifies files and directories to be ignored by version control.
  • package.json: Configuration file for npm with project dependencies and scripts.

Built with

  • React - A JavaScript library for building user interfaces.