Skip to content

greenlaw110/simple-todomvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A simple TodoMVC

A simple TodoMVC app implementation by ActFramework and Riotjs

Setup

You must install MongoDB, JDK and Maven to run this app

Run

To run the app, type mvn clean compile exec:exec

Understanding the app

This application has separated backend and UI implementation.

Backend

The backend service is created using ActFramework. It provides the following RESTful endpoints:

  1. GET /todo - returns all TODO items
  2. POST /todo with JSON body - Create an new TODO item
  3. GET /todo/{id} - get a TODO item specified by id
  4. PATCH /todo/{id} with JSON body - Update a TODO item specified by id with specified JSON body
  5. DELETE /todo/{id} - remove TODO item specified by id

UI

The UI app is created using RiotJS.

TBD ...

About

A simpliest todomvc app with ActFramewrok

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published