Appearance
Node.js Development Environment
Installing Node.js with Homebrew
To install Node.js using Homebrew, follow these steps:
Install Node.js: Now that Homebrew is installed and updated, you can install Node.js by running the following command:
bashbrew install node
This command will install the latest stable version of Node.js on your system.
Verify Node.js installation: To verify that Node.js is installed correctly, run the following commands to check the version numbers for Node.js and npm (the Node.js package manager):
bashnode --version npm --version
If both commands return version numbers, Node.js and npm are installed correctly.
Install pnpm: We use pnpm as our package manager. To install pnpm, run the following command:
bashnpm install -g pnpm
This command will install the latest version of pnpm and make it available system-wide.
Install TypeScript: We use TypeScript as our programming language. To install TypeScript, run the following command:
bashnpm install -g typescript
This command will install the latest version of TypeScript and make it available system-wide.
Verify TypeScript installation: To verify that TypeScript is installed correctly, run the following command to check the TypeScript version:
bashtsc --version
If the command returns a version number, TypeScript is installed correctly.