Recently Released.

Newly Released in the last 30 days
Video preview
Adocasts Plus Exclusive
Free in 10 days
Composite Unique Constraint
Let's Learn AdonisJS 6 #9.5
・
May 16

Defining A Composite Unique Constraint

In this lesson, we'll learn how you can enforce uniqueness between multiple columns using a composite unique constraint.

Video preview
Adocasts Plus Exclusive
Free in 10 days
Filter by User's Watched Status
Let's Learn AdonisJS 6 #9.4
・
May 16

Filtering By User's Watched Status

In this lesson, we'll learn how to add a filter to our user's watchlist allowing them to show only movies they have or have not watched.

Video preview
Adocasts Plus Exclusive
Free in 10 days
Tracking Watched Movies
Let's Learn AdonisJS 6 #9.3
・
May 16

Allowing Users To Toggle A Movie As Watched

In this lesson, we'll learn how to allow users to toggle whether they've watched a movie or not within their watchlist.

Video preview
Adocasts Plus Exclusive
Free in 4 days
Listing and Filtering User Watchlist Items
Let's Learn AdonisJS 6 #9.2
・
May 10

Listing and Filtering User Watchlist Items

In this lesson, we'll take our movie filter, and learn how we can reuse it to display a filterable list of the user's watchlist movies.

Video preview
Adocasts Plus Exclusive
Free in 4 days
Toggling A Movie in an Authenticated User's Watchlist
Let's Learn AdonisJS 6 #9.1
・
May 10

Toggling A Movie in an Authenticated User's Watchlist

In this lesson, we'll learn how to add the ability to toggle whether a user has a movie within their watchlist. We'll also query and display whether a movie is in the authenticated user's watchlist as well.

Video preview
Adocasts Plus Exclusive
Free in 4 days
An Alternative Approach to Many-To-Many Relationships
Let's Learn AdonisJS 6 #9.0
・
May 10

An Alternative Approach to Many-To-Many Relationships

In this lesson, learn an alternative approach to many-to-many relationships that allows you to work directly with the pivot table as a model.

Video preview
Adocasts Plus Exclusive
Free in 22 hours
Pagination First, Last, Next, and Previous Buttons
Let's Learn AdonisJS 6 #8.7
・
May 06

Pagination First, Last, Next, and Previous Buttons

In this lesson, we'll take a look at how to add pagination links to the next and previous pagination pages. Then, we'll follow the same process to add links to the first and last pagination pages.

Video preview
Adocasts Plus Exclusive
Free in 22 hours
How To Paginate Filtered Query Results
Let's Learn AdonisJS 6 #8.6
・
May 06

How To Paginate Filtered Query Results

In this lesson, we'll learn about AdonisJS Model Query Builder pagination and walk through an example of how we can easily paginate the results of our filtered movies.

Video preview
Adocasts Plus Exclusive
Free in 22 hours
Validating Query String Filter Values
Let's Learn AdonisJS 6 #8.5
・
May 06

Validating Query String Filter Values

In this lesson, we'll learn how to use VineJS, AdonisJS' Validator, to validate the filter properties and values we have within our query string.

Video preview
Joining SQL Tables To Order By A Related Column
Let's Learn AdonisJS 6 #8.4
・
May 01

Joining SQL Tables To Order By A Related Column

In this lesson, we'll learn how to join a related table into our query and use that table to apply a sort via the relationship. We'll then see how we can conditionally apply this join only when it's needed for the selected order by.

Video preview
How To Apply A Dynamic Sort Filter To Your Query
Let's Learn AdonisJS 6 #8.3
・
May 01

How To Apply A Dynamic Sort Filter To Your Query

In this lesson, we'll learn how we can add a user-selected sort option to our filters. Then, we'll apply the selected filter to our movie query

Video preview
Filtering Our List by Movie Status
Let's Learn AdonisJS 6 #8.2
・
May 01

Filtering Our List by Movie Status

In this lesson, we'll alter our form input component to allow selects. Then, we'll learn how to add a select-based filter to our movie list page so that we can see only movies containing a specific movie status.

Video preview
Filtering A Query By Pattern Likeness
Let's Learn AdonisJS 6 #8.1
・
Apr 27

Filtering A Query By Pattern Likeness

In this lesson, we'll learn how to add a pattern filter to our movies.index page that will allow us to filter our movies list by title using a case-insensitive pattern search.

Video preview
Creating A Movie List Page
Let's Learn AdonisJS 6 #8.0
・
Apr 27

Creating A Movie List Page

In this lesson, we'll create a page to list all of our movies. Since we have a lot of movies, in this module, we'll focus on adding filters and pagination to this list.

Video preview
Protecting Routes with Auth, Guest, and Admin Middleware
Let's Learn AdonisJS 6 #7.6
・
Apr 27

Protecting Routes with Auth, Guest, and Admin Middleware

In this lesson, we'll learn about the auth and guest middleware included when we created our AdonisJS 6 project. Then, we'll create our own named middleware that will allow us to restrict page access to only users with the admin role.

Video preview
Remembering A User's Authenticated Session
Let's Learn AdonisJS 6 #7.5
・
Apr 24

Remembering A User's Authenticated Session

In this lesson, we'll learn how we can use AdonisJS' Remember Me Tokens feature to allow a user to specify they'd like their authentication state to be remembered for a long time across sessions.

Video preview
Logging In An Existing User
Let's Learn AdonisJS 6 #7.4
・
Apr 24

Logging In An Existing User

In this lesson, we'll learn how we can login an existing user using just their email and password. We'll discuss how the AuthFinder mixin protects us from timing attacks, and how we can use it to verify the accuracy of a user's password.

Video preview
Logging Out An Authenticated User
Let's Learn AdonisJS 6 #7.3
・
Apr 24

Logging Out An Authenticated User

In this lesson, we'll learn how to logout an authenticated user using a POST request with CSRF protection.

Video preview
Checking For and Populating an Authenticated User
Let's Learn AdonisJS 6 #7.2
・
Apr 20

Checking For and Populating an Authenticated User

In this lesson, we'll create a silent auth middleware that will automatically check whether a request has an authenticated user attached to it, and populate that user's details if one is found.

Video preview
Authenticating A Newly Registered User
Let's Learn AdonisJS 6 #7.1
・
Apr 20

Authenticating A Newly Registered User

In this lesson, we'll learn how we can authenticate, or login, a new user who just registered with our application. We'll then see how we can populate the authenticated user's details on subsequent requests.

Video preview
The Flow of Middleware
Let's Learn AdonisJS 6 #7.0
・
Apr 20

The Flow of Middleware

In this lesson, we'll learn about the middleware that comes preinstalled within AdonisJS and the flow of this middleware during an HTTP Request at both a global and route-specific scale.

Video preview
AdonisJS 6 Session Authentication in 15 Minutes
AdonisJS in 15 #5.0
・
Apr 18

AdonisJS 6 Session Authentication in 15 Minutes

In this lesson, we'll learn how to add authentication to a new AdonisJS 6 application using the session guard. In these 15 minutes, you'll learn how to register a user, logout a user, verify a user's credentials and log them in, and more.

Lessons.

Video preview
Querying Relationships and Eager Vs Lazy Loading
Let's Learn AdonisJS 6 #5.2
・
Mar 18

Querying Relationships and Eager Vs Lazy Loading

In this lesson, we'll learn how we can query our relationships using our Lucid Models. We'll then learn what the difference is between eagerly loading a relationship (load) and lazily loading a relationship (preload).

Video preview
Factory Relationships
Let's Learn AdonisJS 6 #5.1
・
Mar 18

Model Factory Relationships

In this lesson, we'll learn how to use relationships with our Model Factories; easing our capabilities to quickly generate fake data with relationships.

Video preview
Defining One to One Relationships
Let's Learn AdonisJS 6 #5.0
・
Mar 18

Defining One to One Relationships Within Lucid Models

In this lesson, we'll learn how to define one-to-one relationships within our Lucid Models. We'll learn about the belongs to and has one decorators, their options, and types that make this possible.

Video preview
Querying Recently Released and Releasing Soon Movies
Let's Learn AdonisJS 6 #4.16
・
Mar 15

Querying Recently Released and Coming Soon Movies

In this lesson, we'll learn how to use the Model Query Builder to query our movies that have been recently released. We'll then do a separate query to get movies that are coming soon.

Video preview
Generating A Movie Slug Using Model Hooks
Let's Learn AdonisJS 6 #4.17
・
Mar 15

Generating A Unique Movie Slug With Model Hooks

In this lesson, we'll learn how we can use Model Hooks to generate a unique URL-safe slug based on the movie's title.

Video preview
Altering Factory States
Let's Learn AdonisJS 6 #4.15
・
Mar 15

Tapping into Model Factory States

In this lesson, we'll dive a little bit deeper into Model Factories by introducing factory states. We'll also learn how we can use the tap method to alter a factory result prior to it persisting into the database

Video preview
Adding A User Profile Model, Migration, Factory, and Controller
Let's Learn AdonisJS 6 #4.12
・
Mar 11

Adding A Profile Model, Migration, Factory, and Controller

Uh oh, a new requirement has come in and now we also need to account for user profiles! In this lesson, we'll learn how we can easily create a new model, migration, factory, and controller for an entity in one fell swoop!

Video preview
SQL Parameters and Injection Protection
Let's Learn AdonisJS 6 #4.13
・
Mar 11

SQL Parameters and Injection Protection

In this lesson, we'll learn about SQL Parameters, also called query bindings, and how using them helps safeguard our database from malicious attacks attempting to perform SQL Injection.

Video preview
Reusable Query Statements with Model Query Scopes
Let's Learn AdonisJS 6 #4.14
・
Mar 11

Reusable Query Statements with Model Query Scopes

In this lesson, we'll learn about Model Query Scopes and how we can use them to create easily reusable query statements that we can apply using the Model Query Builder.

Video preview
Altering Tables with Migrations
Let's Learn AdonisJS 6 #4.11
・
Mar 05

Altering Tables with Migrations

In this lesson, we'll learn how to alter our database tables using migrations both while in development, where we can delete our data, and once our data has already hit production where we need to persist all data.

Video preview
Umapped and Computed Model Properties
Let's Learn AdonisJS 6 #4.10
・
Mar 05

Unmapped and Computed Model Properties

In this lesson, we'll learn how to add unmapped and computed properties to our Lucid Models. We'll discuss the differences between a model column, unmapped property, and a computed property.

Video preview
Querying Our Movies with the Query Builder
Let's Learn AdonisJS 6 #4.9
・
Mar 05

Querying Our Movies with the Query Builder

In this lesson, we'll introduce both the database and model query builder. We'll learn the differences between the two and the basics of how to use them.

Video preview
The Basics of CRUD
Let's Learn AdonisJS 6 #4.6
・
Mar 02

The Basics of CRUD

In this lesson, we'll walk through the basics of creating, reading, updating, and deleting (CRUD) data from our database using our Lucid Models.

Video preview
Fake Data Factories
Let's Learn AdonisJS 6 #4.8
・
Mar 02

Stubbing Fake Data with Model Factories

In this lesson, we'll learn how we can quickly and easily bulk-create dummy/fake data within our database for each of our Lucid Models using Model Factories

Video preview
Defining Required Data with Seeders
Let's Learn AdonisJS 6 #4.7
・
Mar 02

Defining Required Data with Seeders

Our database will have specific, non-changing, roles and movie statuses. In this lesson, we'll learn how we can quickly and easily create these records inside of our database using seeders.

Video preview
Introducing Lucid Models
Let's Learn AdonisJS 6 #4.4
・
Feb 28

Introducing Lucid Models

In this lesson, we'll introduce models using the Lucid ORM. We'll learn how we can map database columns to our model properties and specify special behavior for our date time columns.

Video preview
Defining Our Models
Let's Learn AdonisJS 6 #4.5
・
Feb 28

Defining Our Models

In this lesson, we'll walk through the process of defining all our database tables and columns as models and properties within our application.

Video preview
The Flow of Migrations
Let's Learn AdonisJS 6 #4.3
・
Feb 24

The Flow of Migrations

In this lesson, we'll learn about the various migration-based commands made available by the Ace CLI and how they interact with our migration files. We'll use these commands to run, rollback, and refresh our migrations against our database.

Video preview
Let's Learn AdonisJS 6 #4.2
・
Feb 24

Introducing and Defining Database Migrations

In this lesson, we'll introduce database migrations. We'll learn what they are, why they're great to have, and how we can create and use them to define our database tables and their columns.

Video preview
Easy SVG Icons with Edge Iconify
Let's Learn AdonisJS 6 #3.10
・
Feb 21

Easy SVG Icons with Edge Iconify

In this lesson, we'll learn how we can install and use the edge-iconify package giving us super easy access within our EdgeJS files to any of the SVG icon packages available through Iconify.

Showing 41 to 60 of 249 results