yogeshwaran01 / todo-app

Simple Todo app - backend with Python and CLI with Node.js without any frameworks.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo Application

Simple Todo app - backend with Python and CLI with Node.js without any frameworks.

Usage

clone this repository

Backend

Backend API is powered with python without any Frameworks

python run_api.py

CLI

CLI is powered with node.js without any external library

demo

API Methods

Get all Todos

Method: GET

/todos

Add Todo

Method: POST

/add

JSON data to post

{
    task: 'task_name',
    is_done: false,
}

Change task is done

Method: GET

/done?id={task_id}

Delete task

Method: GET

/delete?id={task_id}

About

Simple Todo app - backend with Python and CLI with Node.js without any frameworks.


Languages

Language:Python 63.2%Language:JavaScript 36.8%