Advanced Search
Search Results
3 total results found
DAOs and Repositories
To manipulate data, we use abstractions around the details for readability and to lessen boilerplate. There are a couple layers of abstractions in dealing with storage. At Narbase, the most notable ones that you will likely deal with are DAOs (Data Access Obj...
Events, Data and State flow
As you may already know, Kunafa relies heavily on observables and events to handle data manipulation and state representation. I'll touch briefly on each one of these topics and provide an simple example that ties them together at the end. Events Basic eve...
Authorization, Authentication and Routing endpoints
Basic Definitions: Let's start this off with basic definitions Authorization: is when determine if the authenticated user has the privileges to access a certain resource or API. Authentication: is when we verify the user's identity. Authentication Workf...