collection api 시작
collection_view 를 생성하면 collection 생성하는 방식으로 가야한다
another service 에 대한 접근이 필요함
형태로 하는 걸 보아 객체로 있을 거 같은디.. 찾아보자
Services | FeathersJS
"Services" are the heart of every Feathers application. Services are JavaScript objects (or instances of ) that implement certain methods. Feathers itself will also add some additional methods and functionality to its services. Service methods are pre-defined methods that your service object can implement (or that have already been implemented by one of the database adapters).
https://docs.feathersjs.com/api/services.html#setup-app-path
- service 참조법...
How to use services in another service · Issue #1628 · feathersjs/feathers
You can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or window. Reload to refresh your session. Reload to refresh your session.
https://github.com/feathersjs/feathers/issues/1628
왜계속 안되나 했더니 공식문서 보니 app.listen()해줘야함
우리가 앱을 미들웨어로 써서 생신 문제
app.listen() 추가해주니 잘나온다 ㄷㄷ

Seonglae Cho