![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbVxS8U%2FbtrEItCbP2E%2FgUwV8uydJcRFVWUw4VAQfk%2Fimg.png)
이전에 만들었던 sns(Git [ch9/sns5]) 서비스의 API(sns-api)를 만들어보겠다. (데이터베이스를 sns 서비스와 공유하겠다.) 또한 snsplus라는 sns-api를 이용하는 서비스도 간단하게 만들어보겠다. 책 Node.js 교과서(개정 2판) 책의 10장의 내용을 참고했다. 전체 클라이언트 서버 관계 sns5: 나의 앱(localhost:8001) sns-api: sns5의 API 앱(localhost:8002) snsplus: sns-api를 이용하여 데이터를 가져오는 제 3자 앱(localhost:4000) Github 주소1(sns-api, snsplus): https://github.com/delay-100/study-node/tree/main/ch10 Github 주소2(s..