Jovo is the most popular development framework for voice, including platforms like Alexa, Google Assistant, mobile apps, and Raspberry Pi. Learn more here.
Solid is a purely reactive library. It was designed from the ground up with a reactive core. It's influenced by reactive principles developed by previous libraries.
Modern JavaScript Tutorial: simple, but detailed explanations with examples and tasks, including: closures, document and events, object oriented programming and more.
Perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML.
One of the biggest challenges I hear about from developers is that they struggle with how to abstract their code. Today, we’re going to look at a few different examples using the fetch() method, and I’ll show you how I would abstract that code. Repeating the same task For today’s article, we’ll be using the JSONPlaceholder APIs. They let you make real API calls and get data back. For our first example, lets say you wanted to POST data to the /posts endpoint.
The URL API is a browser API that lets you create a URL object from a string that you can then parse and manipulate. Confused? Let’s dig in and demystify this a bit. Creating a URL from a string with vanilla JS To create a new URL object, pass the URL as a string into the new URL() constructor method. var url = new URL('https://gomakethings.com/about?num=42&greeting=hello#contact'); I’m using a comically complex example above so that you can see all of the cool stuff the URL API lets you do.