Skip to content

Express.js / React.js todo app with jwt authorization middleware which sends notifications about tasks

Notifications You must be signed in to change notification settings

a-fadlly/todo-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ToDo application

  • backend in express.js connected to mysql database
  • users are registered with username, email and password
  • after logging in, jwt token is generated and used through authentication middleware in order to allow users to get to endpoints only for registered users
  • user can create a new task with just a description, the rest of the values is set to default values if not filled
  • owner of the task can update any property of the task object
  • owner can change the status of task 'isForGrab' to true and then the task is shared with other users who can 'grab task' and become the solver of the task
  • each user has property of completed tasks which is incremented with every solved task
  • top ten solvers are showed
  • when the task is about to come to its deadline (1 hour), the notification email is sent
  • when the task hasn't been updated (done or deadline changed) after 24 hours, the status is changed to done

App on Heroku

Set-up

  • fork repo
  • clone repo with https://github.com/marcoff90/todo-app.git
  • open project and run 'npm install' in backend directory
  • change .sample.env to .env and fill out the requirements to connect to mysql database, mailer and generate access token secret code

Ideas to do

  • add teams and share tasks with just teams
  • add chat for teams
  • add animations cascading for tasks
  • completing tasks by moving them from one column to another

Alt Text

About

Express.js / React.js todo app with jwt authorization middleware which sends notifications about tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.1%
  • CSS 21.2%
  • HTML 1.4%
  • Shell 0.3%