Tag: Tools
-
Building WooCommerce Blocks with @wordpress/scripts and Webpack
—
in TutorialsTo start developing WooCommerce Blocks, you need a solid development environment. In this guide, we’ll walk you through setting up a development environment for WooCommerce Blocks development. Prerequisites Before you proceed, ensure you have the following prerequisites installed: Project Setup Begin by setting up your package.json file with the following contents: This package.json file sets…
-
Managing Multiple PHP Versions on macOS Using Homebrew
—
in TutorialsWhen working on macOS with PHP, you might need to switch between different PHP versions for various projects. Homebrew offers a convenient way to install and manage multiple PHP versions. In this guide, we’ll walk you through the process of setting up and switching between PHP versions using Homebrew. We’ll also provide you with a…
-
How to manage multiple Node.js Versions with NVM
—
in TutorialsNode.js is a versatile and popular runtime environment for executing JavaScript code on the server-side. However, different projects often require different Node.js versions due to compatibility or dependency constraints. Managing multiple Node.js versions can be challenging, but fortunately, there’s a tool that simplifies this process: Node Version Manager (NVM). In this comprehensive guide, we will…