976b3a55ca
* Update logging middleware to integrate with pino for console logging * Remove elastic apm references, use updated core middlewares * Remove redundant LOG_LEVEL definitions * Remove no longer needed jest logging overrides * lint * Backwards compat between console log helpers and pino * Configurable DISABLE_HTTP_LOGGING * Don't log 4xx as errors * Remove redundant ENABLE_4XX_HTTP_LOGGING * Cleanup migrations and event logging * Improve bb-alert logging * Add DISABLE_HTTP_LOGGING to helm chart * Add ops endpoints for testing * Disable http logging in dev * Backwards compatible tracing implementation * Naming update on http logging env var * lint * Update packages/backend-core/src/environment.ts Co-authored-by: Adria Navarro <adria@revityapp.com> * Merge * Lint * Fix console.warn failing mock by replacing with alerts mock instead * Lint --------- Co-authored-by: Adria Navarro <adria@revityapp.com> |
||
---|---|---|
.. | ||
__mocks__ | ||
scripts | ||
src | ||
tests | ||
.gitignore | ||
LICENSE | ||
README.md | ||
jest-testcontainers-config.js | ||
jest.config.ts | ||
package.json | ||
plugins.ts | ||
tsconfig.build.json | ||
tsconfig.json | ||
yarn.lock |
README.md
Budibase Core backend library
This library contains core functionality, like auth and security features which are shared between backend services.
Note about top level JS files
For the purposes of being able to do say require("@budibase/backend-core/permissions")
we need to
specify the exports at the top-level of the module.
For these files they should be limited to a single require
of the file that should
be exported and then a single module.exports = ...
to export the file in
commonJS.