Category: javascript

Stand With Ukraine!

April 19, 2022 By Mark Otto Off

The war in Ukraine is a ghastly tragedy and an outrageous event which can never be justified. The war has catastrophic effect on the lives of millions of people not only in Ukraine 🇺🇦, but around the whole world. The team of Flatlogic strongly condemns…

On function composition in JavaScript

April 15, 2022 By Mark Otto Off

JS Function Composition: What’s The Big Deal? — James’ articles on JavaScript fundamentals have been very popular over the years, so it’s great to see a new one focusing on a common activity: function composition — “Why, then, do functional programmers get all worked up…

Caching NextJS Apps with Serverless Redis using Upstash

April 14, 2022 By Mark Otto Off

The modern application we build today is sophisticated. Every time a user loads a webpage, their browser needs to download the bulk of data in order to display that page. A website may consist of millions of data and serve hundreds of API calls. For…

Best ways to deploy React app

April 13, 2022 By Mark Otto Off

In this post, we will look at how and where you can host a web application. We will look at the main hosting platforms, their features, advantages, and disadvantages. In this article, we will also look at what parameters you can choose to host for…

13+ Date Picker Examples for Bootstrap [2022 Choice]

April 13, 2022 By Mark Otto Off

What is a Date picker? Let’s start with the basics. Datepicker is a UI component that helps users interact with the website choosing a certain date or time. This is a standard element for every Internet user since we see it almost everywhere (especially in…

Starting a Web App in 2022 [Research]

April 11, 2022 By Mark Otto Off

Participate in our research and get 70% OFF discount on all Flatlogic products! We will also make the final results public. The team of Flatlogic is carrying out a global scientific research that aims to identify modern patterns of web application creation, specifically which tools…

Format JavaScript as the Romans do?

April 8, 2022 By Mark Otto Off

Writing Redux Reducers in Rust — We often cover how Rust is worming its way into numerous JavaScript areas (e.g. Rome, above!) but this is an interesting one: using Rust to write complex functions that are compiled down to WASM and used in a React/Redux app.…

What is NPM?

April 7, 2022 By Mark Otto Off

Node Package Manager (npm) is one of the several package managers (default for Node.js) for JavaScript released in 2010. It is used to manage dependencies for packages. npm  consists of:  The npm’s website makes it possible to find third-party packages, create and manage your packages;…

What is Vue?

April 7, 2022 By Mark Otto Off

Vue.js is a progressive open-source MVVM frontend JavaScript framework that is designed to be implemented incrementally since the core library focuses only on the presentation layer. Nevertheless, this framework is used for building UI (user interfaces) and complex single-page applications with modern tools and libraries…

Creating a Laravel Project Step by Step

April 1, 2022 By Mark Otto Off

Laravel is a PHP-based backend framework. It follows the Model-View-Controller design pattern which explains many of Laravel’s pluses and minuses that we’ll detail further on. Users often credit Laravel with responsiveness, scalability, and a good community. But not everything is so simple. Like many backend…