A Task Management application for creating, read and manage tasks
Made using the following technologies:
- ReactJS - For the frontend and the web page!
- Node.js - evented I/O for the backend
- Express - fast node.js network app framework
- MongoDB - Non-relational database
- Jest - For unitaring testing on javascript (Not implement yet)
-
And more...
Taskeitor requires Node.js v10+, and ReactJS v12+ to run.
The following instructions only work locally, for the deployment on the cloud the instructions change
Install the dependencies of the server and start it
$ cd server
$ npm install
$ npm run dev
The output looks like this:
Server running on port 5004
Install the dependencies and run the dev server of React (The default output is port 3000 to view the web page)
$ cd client
$ npm install
$ npm start
The output looks like this:
Compile Sucessfuly
Local: http://localhost:3000
Network: -----
Happy Coding!