Posts for Wisdom Ekpot

Javascript Developer| I Love Food | Wisdomekpot@gmail.com

Build A Blog App with ExpressJs and SvelteJs

Svelte makes use of a new approach to building user interfaces. Instead of doing the necessary work in the browser, Svelte shifts that work to a compile-time phase that happens on the development machine when you’re building your app. In this article, We will build a simple blog application with expressjs and Sveltejs. Prerequisites Familiarity […]

January 22, 2020 in Svelte & Tutorials

Building A CRUD Application with Svelte

Svelte is a modern JavaScript compiler that allows you to write easy-to-understand JavaScript code that is then compiled to highly efficient code that runs in the browser. The framework is similar to React or Vue, but in Svelte, we don’t have any dependencies. That means it will not take any time to interpret our code, […]

January 2, 2020 in Svelte & Tutorials

Creating a logging middleware in Expressjs

Logging is an important part of supporting the complete application life cycle. By analyzing the data in the logs, we could resolve bugs much quicker, and detect problems early as they happen. One of the most basic kind of logging every backend application should have is a trace logging of all incoming HTTP requests. In […]

December 26, 2019 in Node & Tutorials

Understanding Fetch() in JavaScript

The fetch()  method allows you to make network requests similar to XMLHttpRequest (XHR). The main difference between the Fetch API and XMLHttpRequest which was otherwise known as XHR is that the Fetch API uses Promises, which makes you write cleaner API calls, strictly avoiding callback hell and reducing the complexity of XMLHttpRequest. Basic Fetch Request […]

December 20, 2019 in Code examples & Javascript