Skip to content

honadmin/forge_platform_interview

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Forge Platform Interview

How to start the server

cd server
yarn install or npm install
yarn start or npm start

How to start the app

cd app
yarn install or npm install
yarn start or npm start

What you need to do

Server

Implement a full CRUD cycle for a todo app

A todo object contains a title and a description

{
    title: string,
    description: string
}

App

Make an api request to the server to get all todos objects and provide a textbox to filter todos by title. You can use a table to show all filtered todos.

  • Choose any libraries to make the request
  • Don't need to worry about styling
  • It is not required to implement create, update delete function in the App

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors