exercise 3 Flashcards
1
Q
Seneca.js
A
Microservices application building framework in node.js
2
Q
What is special about Seneca?
A
lets you build message based microservice systems with ease
- you don’t need to know where the other services are located, how many of them there are, or what they do
3
Q
three core features of Seneca
A
- Pattern matching
- Transport independence: can send messages between services in many ways, all hidden from your business logic
- Componentization: Functionality is expressed as a set of plugins which can be composed as microservices
4
Q
Seneca Actions
A
- function that is identified by a JSON object
- created through the seneca.add method