Posts for Tutorials

Advanced Tutorials for web and app development, we cover topics including, Vue, JavaScript, Laravel, Flutter, Golang, Python and more

Handling Vue Authentication using GraphQL API

In this tutorial, we will be using Vuex and ApolloClient connected to a GraphQL API to handle authentication in our Vuejs app. Authentication and Authorization Authentication and Authorization are most often used interchangeably, but they’re different concepts entirely. Authentication identifies or verifies who a user is while Authorization is validating the routes (or parts of the app) the authenticated user can […]

August 28, 2020 in GraphQl & Tutorials & Vue

Build a complete Laravel CRUD application with MySQL

In this tutorial, we will create a complete laravel CRUD application with features like error handling, pagination, and all the best practices so that you can improve the quality of your Laravel project. For illustration consider the following application: Contents Requirements Setup Laravel project Create Controller and Model Setup the Layout READ Operation CREATE Operation […]

August 24, 2020 in Laravel & MySQL & Tutorials

Build a CRUD Application Using Laravel and Vue

In this tutorial, we’ll build a complete CRUD application using VueJS and Laravel.For illustration, consider the following simple app: Contents Before we kick off Introduction Setting up Laravel and VueJs Initialize VueJS Create Operation Read Operation Update Operation Delete Operation Conclusion Before we kick off Learn Vue.js and modern, cutting-edge front-end technologies from core-team members […]

August 18, 2020 in Laravel & Tutorials & Vue

Sending Emails With Vuejs and Nodemailer

Sending mails over the internet has become one of the most significant features every web application would love to integrate. In this article, we will see how to send email templates using Nodemailer as our transporter service, Handlebars, as our email templating engine. What We will be building We will build a simple application where […]

June 17, 2020 in Node & Tutorials & Vue

Build a Crud application with JavaScript

In this tutorial, we will be looking at how we can create a Crud application with JavaScript. In the course of this article, we will create a Todo app. It is focused more on beginners learning javascript. A todo app is the most popular thing to build when learning a new programming language, and all you need […]

June 8, 2020 in Javascript & Tutorials

Validating Vue.js Forms Using Vuelidate

Getting user input is crucial for many web apps as it enables the web app to give the user a more personalized experience. However, getting user input is not so straightforward because you have to: Make sure you are getting the right input from the user Make sure the input is in the correct format […]

June 4, 2020 in Tutorials & Vue

Build a Crud application using Vue Composition API

The composition API is a new and optional way of creating and organizing components in a Vue 3 application. The Composition API allows reactive component logic to be defined more intuitively by allowing all the code for a specific feature (search, for example), to be grouped together. Using the Vue composition API will make your […]

May 28, 2020 in Tutorials & Vue

Understanding Top Core Essentials in RXJS

In this article, we are going to talk about the basics of Reactive programming. RxJS is a library for composing asynchronous and event-based programs by using observable sequences. Core Essentials in RXJS Observables: represents the idea of an invokable collection of future values or events. Observables are pretty useful and are used to handle the […]

May 21, 2020 in Javascript & Tutorials

​​Setting Up Webpack and Typescript

Webpack is a fast, efficient, very powerful code bundler. TypeScript is a compiler (or transpiler if you prefer) which adds support for type checking to your project. In this article, we will set up our typescript application using Webpack.We will start by creating a new folder on our desktop for this application. I will use […]

May 8, 2020 in Code examples & Tutorials