Home » javascript » Page 39
January 28, 2022
By
Mark Otto
Introduction There is a huge number of admin dashboard templates on the internet and a significant number of free ones to download. They usually include such kinds of things as graph/chart libraries, dashboard pages, alert box buttons, navigation schemes, icons, tables, and so on. We…
January 28, 2022
By
Mark Otto
Take the State of JavaScript 2022 Survey — Now several years in, the popular State of JavaScript survey returns for a joint 2021/22 run and, as ever, seeks to establish what libraries and frameworks developers are excited about. It’s not a perfect approach, but the…
January 27, 2022
By
Mark Otto
Introduction Docker is an open container-based platform that enables you to generate, control and deploy applications on it. You can decouple applications from the infrastructure, and it enables you to build software quickly. Docker helps you reduce the time between coding and getting it into…
January 26, 2022
By
Mark Otto
Let’s talk about Bootstrap 4 components. Bootstrap is an open-sourced framework for web apps development that has gained great popularity since 2011 when it was released for the first time. Since that time Bootstrap has expanded, evolved, become more and more popular, and gained the…
January 25, 2022
By
Mark Otto
When you start to code with React you may get confused by some things in React, like JSX syntax or the difference between functional and class components. JSX is an interesting syntax extension to JavaScript that was developed to make the process of writing the…
January 25, 2022
By
Mark Otto
Tables and data visualization Tables are so widespread and trivial it’s easy to take them for granted. Meanwhile, the value of a table or spreadsheet for big data is like that of an assembly line for heavy industry. Before we dive into our Bootstrap table…
January 25, 2022
By
Mark Otto
Everyone faced the dilemma of what app you should develop next to make progress in learning React. The project must be complex enough to make you think and google, but not too hard so you don’t feel overwhelming. And you are looking for a great…
January 25, 2022
By
Mark Otto
What is the REST API? REST, or Representational State Transfer, API is a client-service architecture that is based on a request/response design. REST APIs are primarily used to access and work with data. How the REST API works? The REST API works almost in the…
January 25, 2022
By
Mark Otto
Icons have a significant role in giving you the first impression of a site or application interface. But it takes a lot of time and money to develop them from scratch. Using icons on your site allows you to effectively communicate with your visitors: they…
January 21, 2022
By
Mark Otto
What is an API How API works Examples of APIs we use every day Weather snippets Log in using social media accounts Twitter bots Travel booking Conclusion An Application Programming Interface (API) is a gateway that allows one App to communicate with other Apps –…