1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00
budibase/packages/backend-core
2024-01-11 16:44:15 +00:00
..
__mocks__
scripts
src This removes the need for constant DB HEAD requests to check if a database exists or not. Instead, it tries to make the request, and if it fails it will check if the reason for failure is the database not existing. If it doesn't exist it runs through the same old flow to confirm that it definitely doesn't exist, and if it doesn't then it will create it. 2024-01-11 16:44:15 +00:00
tests
.gitignore
.npmignore
jest-testcontainers-config.js
jest.config.ts Use path for shared-core in backend-core 2023-08-02 09:59:14 +02:00
LICENSE
package.json
README.md
tsconfig.build.json
tsconfig.json

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.