🚀 두번째 미션 - Todo List for Team!
이번 미션은 Ajax를 이용하여 TodoList를 발전시키는 미션입니다. 비동기 통신으로 데이터를 관리할 경우 자바스크립트의 비동기라는 특성을 더욱 깊이있게 이해할 수 있습니다
🎯 요구사항
🎯🎯 심화 요구사항
🕵️♂️ 제약사항
📝 API
User list 불러오기
method
uri
GET
/api/users
User 추가하기
method
uri
POST
/api/users
{
requestBody : {
"name" : "string"
} ,
response : {
"_id" : "string" ,
"name" : "string" ,
"todoList" : [ ]
}
}
User 불러오기
method
uri
GET
/api/users/:userId
{
response : {
"_id" : "string" ,
"name" : "string" ,
"todoList" : [ ...]
}
}
User 삭제하기
method
uri
DELETE
/api/users/:userId
User의 Todo Item 불러오기
method
uri
GET
/api/users/:userId/items/
User의 Todo Item 추가하기
method
uri
POST
/api/users/:userId/items/
{
requestBody : {
"contents" : "string"
} ,
response : {
"_id" : "string" ,
"name" : "string" ,
"todoList" : [ ...]
}
}
User의 Todo Item 전부 삭제하기
method
uri
DELETE
/api/users/:userId/items/
{
response : {
"_id" : "string" ,
"name" : "string" ,
"todoList" : [ ]
}
}
User의 Todo Item 1개 삭제하기
method
uri
DELETE
/api/users/:userId/items/:itemId
{
response : {
"_id" : "string" ,
"name" : "string" ,
"todoList" : [ ...]
}
}
User의 Todo Item 내용 수정하기
method
uri
PUT
/api/users/:userId/items/:itemId
{
requestBody : {
"contents" : "string"
} ,
response : {
"_id" : "string" ,
"contents" : "string" ,
"priority" : "string" ,
"isCompleted" : "boolean"
}
}
User의 Todo Item 우선순위 수정하기
method
uri
PUT
/api/users/:userId/items/:itemId/priority
{
requestBody : {
"priority" : "string" // 'NONE', 'FIRST', 'SECOND'
} ,
response : {
"_id" : "string" ,
"contents" : "string" ,
"priority" : "string" ,
"isCompleted" : "boolean"
}
}
User의 Todo Item complete toggle
method
uri
PUT
/api/users/:userId/items/:itemId/toggle
{
response : {
"_id" : "string" ,
"contents" : "string" ,
"priority" : "string" ,
"isCompleted" : "boolean"
}
}
☕️ 코드리뷰 모임 - Black Coffee
'훌륭한 의사소통은 블랙커피처럼 자극적이며, 후에 잠들기가 어렵다'. A.M. 린드버그(미국의 작가, 수필가) -
블랙커피처럼 서로를 자극해주고, 동기부여 해주며, 그 성장과정으로 인해 의미있는 가치를 만들어내고자 하는
프론트엔드 코드리뷰 모임 ☕️ Black Coffee 입니다.
⚙️ Before Started
로컬에서 서버 띄워서 손쉽게 static resources 변경 및 확인하는 방법
로컬에서 웹서버를 띄워 html, css, js 등을 실시간으로 손쉽게 테스트해 볼 수 있습니다. 이를 위해서는 우선 npm이 설치되어 있어야 합니다. 구글에 npm install
이란 키워드로 각자의 운영체제에 맞게끔 npm을 설치해주세요. 이후 아래의 명령어를 통해 실시간으로 웹페이지를 테스트해볼 수 있습니다.
npm install -g live-server
실행은 아래의 커맨드로 할 수 있습니다.
👨💻 Code Review 👩💻
아래 링크들에 있는 리뷰 가이드를 보고, 좋은 코드 리뷰 문화를 만들어 나가려고 합니다.
👏 Contributing
만약 미션 수행 중에 개선사항이 보인다면, 언제든 자유롭게 PR을 보내주세요.
🐞 Bug Report
버그를 발견한다면, Issues 에 등록 후 @eastjun에게 dm을 보내주세요.
📝 License
This project is MIT licensed.