Skip to content

Riya7070/Task-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Task Manager

Task Manager is a full-stack task management application built for productivity and ease of use. It allows users to register, log in, and manage tasks with full CRUD (Create, Read, Update, Delete) operations in a clean and responsive interface.

Features

  • User Authentication: Secure signup and login functionality using JWT.
  • Password Security: All passwords are hashed securely using bcrypt.
  • Add Tasks: Users can input new tasks and add them to their personal task list.
  • Edit Tasks: Users can modify the title of existing tasks.
  • Delete Tasks: Users can remove tasks from the list permanently.
  • Complete Tasks: Tasks can be marked as completed or pending; completed tasks are visually crossed out.
  • Task Filtering: Users can filter tasks by All, Completed, or Pending for better task management.
  • Logout: Authenticated users can safely log out of their session.

Tech Stack

  • Frontend: React, HTML, CSS, JavaScript
  • Backend: Node.js with Express
  • Database: MongoDB with Mongoose for database interaction
  • Authentication: JWT (JSON Web Tokens)
  • Hosting: Vercel (Frontend), Render (Backend)

Preview

Login

Task

Setup Instructions

  1. Clone the repository:
    git clone https://github.com/Riya7070/Task-Manager.git
  2. Navigate into the project directory:
    cd Task-Manager
  3. Install frontend dependencies
    cd client
    npm install
  4. Install backend dependencies
    cd ../server
    npm install
  5. Set up Environment Variables
    • Create a .env file inside the server/ directory and add the following:
      • PORT=5000
      • MONGO_URI=your_mongodb_connection_string
      • JWT_SECRET=your_jwt_secret
    • If you have environment-specific frontend URLs or API endpoints, you may also configure .env in the client/ directory.
  6. Start the application: Start the backend server:
    cd server
    node server.js
    Start the frontend app:
    cd ../client
    npm start
  7. Visit the application at http://localhost:3000 in your browser.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors