budibase/packages/backend-core
Rory Powell 396a07cac5 Merge branch 'release' into feature/event-backfill 2022-06-09 15:21:49 +01:00
..
scripts Build fixes 2022-06-09 12:33:10 +01:00
src Build fixes 2022-06-09 12:33:10 +01:00
tests Build fixes 2022-06-09 12:33:10 +01:00
.gitignore Changing directory. 2022-01-10 19:30:35 +00:00
LICENSE Changing directory. 2022-01-10 19:30:35 +00:00
README.md Switching out @budibase/auth to @budibase/backend-core. 2022-01-10 19:33:00 +00:00
accounts.js Build fixes 2022-06-09 12:33:10 +01:00
auth.js Build fixes 2022-06-09 12:33:10 +01:00
cache.js Build fixes 2022-06-09 12:33:10 +01:00
constants.js Build fixes 2022-06-09 12:33:10 +01:00
context.js Build fixes 2022-06-09 12:33:10 +01:00
db.js Build fixes 2022-06-09 12:33:10 +01:00
deprovision.js Build fixes 2022-06-09 12:33:10 +01:00
encryption.js Build fixes 2022-06-09 12:33:10 +01:00
logging.js Build fixes 2022-06-09 12:33:10 +01:00
middleware.js Build fixes 2022-06-09 12:33:10 +01:00
migrations.js Build fixes 2022-06-09 12:33:10 +01:00
objectStore.js Build fixes 2022-06-09 12:33:10 +01:00
package.json Merge branch 'release' into feature/event-backfill 2022-06-09 15:21:49 +01:00
permissions.js Build fixes 2022-06-09 12:33:10 +01:00
redis.js Build fixes 2022-06-09 12:33:10 +01:00
roles.js Build fixes 2022-06-09 12:33:10 +01:00
sessions.js Build fixes 2022-06-09 12:33:10 +01:00
tenancy.js Build fixes 2022-06-09 12:33:10 +01:00
tsconfig.build.json Build fixes 2022-06-09 12:33:10 +01:00
tsconfig.json Build fixes 2022-06-09 12:33:10 +01:00
utils.js Build fixes 2022-06-09 12:33:10 +01:00
yarn.lock Update locks 2022-06-09 13:33:31 +01:00

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.