monorepo/lib/README.md
2024-07-06 20:34:19 -05:00

499 B

Library

Your library contains shared code that can be used across multiple services. This is most-often used when code generating API definitions. For example, gRPC will convert protocol buffer definitions into different language implementations, simplifying the process of writing client and server implementations. Similarly, GraphQL has some fairly extensive support for code-generation.

|- lib
   |- {language}
   |  |- {package}
   |  |  |- package.json
   |  |  |- # ...
   |