Beyond React: 7 Ways of Integrating React With Other Technologies
One of React’s strengths is how well it plays with others. Discover some of the best tools to integrate with the framework.
The Top 4 Node.js Testing Packages
Check out these best-in-class packages to get the best testing functionality Node has to offer.
How to Set Up and Run Your First Python Test With Pytest
Setting up a test suite for your code may feel like a hurdle you’re not ready for, but this library takes a lot of the strain.
How to Document Python Code Using Docstrings
Good code includes comments to help understand it, and docstrings can play a major role in that.
How to Use IndexedDB as a Database
Many web apps need to use a database to store user details or preferences. But did you know there's a built-in database in every modern web browser?
How to Make HTTP Requests With curl
The curl command line tool is a perfect assistant when you're working with HTTP code. Test out requests, explore data formats, and more!
How to Make HTTP Requests in Go
Sending an HTTP request is key for any app that needs to communicate over the internet. Find out how to send a variety of HTTP requests using Go.
How to Set Up Prettier in Visual Studio Code
Prettier will help you enforce good code formatting standards, so why not pair it with VS Code for a better programming experience all round?
How to Build a Simple Login Page Using Python
A simple login page is easy to create and it’s a great place to start building your website or app.
Understanding Type Conversion and Coercion in JavaScript
Beware type coercion: this advanced feature can be the cause of subtle bugs, so make sure you know how it works.
6 CSS Tips for Better Web Development and Enhancing Your Web Design Skills
These tips will help you use CSS to its full potential.
How to Handle Forgot and Reset Password Workflow Using React and Node.js
Don't leave your site visitors hanging—let them reset their password if they've forgotten it.
What Are Aria Attributes in HTML and Why Are They Important?
Using semantic markup will help make your site more accessible, and ARIA attributes can help with the edge cases.
5 Tips to Optimize JavaScript Arrays
Arrays are a very powerful, highly flexible data structure that you’re no doubt using in your JavaScript code. But are you using them efficiently?
Understanding Django CSRF Tokens: What They Are and Why You Need Them
Protect your website from a very common security hole with Django’s built-in CSRF-handling.
How to Create PDF Documents With Your React Components Using React-pdf
Create PDFs with ease using this React library and some simple code.
What's the Best Language for Microcontrollers: MicroPython, CircuitPython, Arduino, or C?
Which programming language should you use for your microcontroller projects? Let's explore the four best options.
What to Expect From ECMAScript 2023 (ES14)
ECMAScript 2023 introduces new features that will impact web development.
Node.js vs. Deno: Which Is Right for Your Project?
Node.js may be well established, but don't overlook Deno, a similar framework from the same developer.
Handling Collisions in Games Made Using Arcade Library
Whether a collision grants a power-up or leads to game over, you need to be able to detect it. Here’s how to do so with Python’s arcade library.