Nodemon App Crashed – Waiting For File Changes Before Starting

[ad_1] Nodemon is a utility that monitors for changes in your source code and automatically restarts the Node.js application when changes are detected. The message “nodemon app crashed – waiting for file changes before starting” typically appears when you are using Nodemon to run a Node.js application, and the application crashes for some reason. The … Read more

Set Environment Variables in Mac OS

[ad_1] To set environment variables in Mac OS; In this tutorial, you will learn how to set environment variables in mac os using zsh terminal. How to Set PHP Environment Variables Ubuntu Steps to set environment variables in mac os using zsh terminal: Step 1: Start Terminal Step 2: Specify the Shell Step 3: Edit … Read more

How to Uninstall MySQL on Mac

[ad_1] If you are using MySQL in a Mac system. And want to remove the MySQL server and it’s all files, directories from Mac for some reason. So you are in the right tutorial. In this tutorial, you will learn how to completely remove or uninstall MySQL on Mac using a terminal. How to Uninstall … Read more

How to Install MySQL on Mac using Brew

1. Open the Terminal application on your Mac. 2. Update Homebrew by running the command: brew update 3. Install MySQL by running the command: brew install mysql 4. Start the MySQL server by running the command: mysql.server start 5. Secure the MySQL installation by running the command: mysql_secure_installation 6. Log in to the MySQL server … Read more

Find and Kill Process on Port macOS

To find and kill a process on port on macOS, you can use the command line tool lsof. To use lsof, open the Terminal and type the following command: lsof -i :[port_number] Replace [port_number] with the port number you want to find and kill the process on. This will list all the processes running on … Read more

How to Download Files from ssh to Local Mac

1. Open the Terminal application on your Mac. 2. Connect to the remote server using the SSH command. 3. Navigate to the directory containing the file you want to download. 4. Use the scp command to download the file from the remote server to your Mac. 5. Enter the username and password for the remote … Read more

How to Install Nginx on macOS

1. Download the Nginx package from the official website. 2. Unzip the package and move it to the desired location. 3. Open the Terminal and navigate to the directory where the Nginx package is located. 4. Run the command “./configure” to configure the Nginx installation. 5. Run the command “make” to compile the Nginx source … Read more

How to Uninstall Python on Mac

1. Open Finder and select Applications. 2. Scroll down and locate the Python folder. 3. Right-click on the folder and select Move to Trash. 4. Empty the Trash. 5. Open the Terminal app and type the following command: sudo rm -rf /Library/Frameworks/Python.framework 6. Enter your password when prompted. 7. Type y when prompted to confirm … Read more

How to Install Python on Mac using Brew

1. Open the Terminal application on your Mac. 2. Type the following command to install Homebrew: /usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” 3. Press Return to execute the command. 4. Type the following command to install Python: brew install python 5. Press Return to execute the command. 6. Type the following command to verify the installation: … Read more

How to Install Python on Mac

1. Download the latest version of Python from the official Python website. 2. Open the downloaded file and follow the instructions to install Python on your Mac. 3. Once the installation is complete, open the Terminal application and type “python” to check if Python is installed correctly. 4. If Python is installed correctly, you should … Read more

How to update latest version of Node using Brew

1. Open the Terminal application. 2. Type the following command to update Homebrew: brew update 3. Type the following command to upgrade all packages: brew upgrade 4. Type the following command to install the latest version of Node: brew install node 5. Type the following command to check the version of Node: node -v [ad_1] … Read more