Lib
Noun · Development
Definitions
Short for library — a directory (conventionally named `lib/`) or package containing reusable code modules. In many project layouts, `lib/` holds internal shared utilities as distinct from `src/` (application code) or `vendor/` (third-party code).
In plain English: A folder or collection of reusable code that other parts of a project can share, short for library.
Example: "Drop that helper into lib/ — it's used by three different services and doesn't belong in any one of them."