Hi 👋

I'm Antonio Ufano,

 

Blog

Articles and dev tips about building products with Node.js, Vue.js, Laravel and how to deploy them to a production environment.


Understanding Javascript promises

Posted

Javascript promises are very useful when working with asynchronous tasks like reading files and calling APIs. In this article I explain what they are, how to create them, create functions that return them and how to use ES7 async/await syntax.

Consuming your Laravel API with JavaScript

Posted

Laravel Passport documentation is a little complex and focuses on creating a OAuth2 server. In this article I explain the basics to manage API authentication to consume you own Laravel API from a JavaScript front end.

Schedule scripts/tasks with Cron

Posted

A quick guide to show you how to schedule jobs with Cron. In this example I schedule a PHP script that sends an email but you can use Cron to schedule anything you need.