4Geeks logo
4Geeks logo
About us

Learning library

For all the self-taught geeks out there, here our content library with most of the learning materials we have produces throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer

Data Science and Machine Learning - 16 wks

Search from all Lessons

Social & live learning

The most efficient way to learn: Join a cohort with classmates just like you, live streams, impromptu coding sessions, live tutorials with real experts, and stay motivated.

← Back to Projects

Continue learning for free about:

Todo List API

Goal

4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills

Difficulty

intermediate

Repository

Click to open

Video

Not available

Live demo

Not available

Average duration

8 hrs

Technologies

alt text Todo List API

We are going to build one API to manage tasks (Todo List). Similar to this api: http://assets.breatheco.de/apis/fake/todos/

πŸ’» Installation

Use the python/flask or node/express boilerplate, clone the repository on Gitpod to avoid any local issues in your computer because you will need to have MySQL or PostgreSQL and Node.js or Python 3.7+ installed (already installed on Gitpod).

πŸ“ Instructions

Create an API that connects to a MySQL database and implements the Following Endpoints.

  1. [GET] /todos/user/<username> Get list of todo's for a particular user.
  2. [POST] /todos/user/<username> Create a new todo list of a particular user.
  3. [PUT] /todos/user/<username> Update the entire list of todo's of a particular user.
  4. [DELETE] /todos/user/<username> Delete a user and all of their todo's.

πŸ“– Fundamentals

This exercise will make you practice the following fundamentals:

  1. Building an RESTful API.
  2. Building a database with SQLAlchemy or Expressjs/TypeOrm.
  3. Database Migrations.

Goal

4Geeks Coding Projects tutorials and exercises for people learning to code or improving their coding skills

Difficulty

intermediate

Repository

Click to open

Video

Not available

Live demo

Not available

Average duration

8 hrs