Space Grunts (itch) Mac OS
Space Grunts are a group of intergalactic 'problem' solvers, sent to investigate. You play one, out of a team, of Space Grunts, and your mission is simple: find your way into the. OS: Ubuntu 16.04 and Ubuntu 18.04 Processor: x64 architecture with SSE2 instruction set support Memory: 500 MB RAM Graphics: OpenGL 3.2+, Vulkan capable, Nvidia using Nvidia official proprietary graphics driver or AMD GPUs using AMD Mesa graphics driver Storage: 200 MB available space.
In this tutorial we will learn to install Grunt The JavaScript Task Runner on Mac using Node NPM.
If you already have Node and NPM installed on your Mac then you can jump directly to Step 3: Install Grunt.
Step 1: Install Homebrew
Homebrew is a package manager for Mac and makes installing and uninstalling packages on Mac easier. So, we will install Homebrew.
Use the following command to install homebrew on your Mac.
For more detail on Homebrew check their website.
Once we have Homebrew installed we can now install Node.
Step 2: Install Node
NodeJS and NPM which is a package manager for Node comes together. So, when we install Node via Homebrew we also get NPM.
To install Node on your Mac using Homebrew type the following command.
Now check the Node version by typing the following command in the terminal.
And, check the version of NPM type the following command in the terminal.
Click here to read the tutorial on How to install NodeJS on Mac.
Step 3: Install Grunt
Before installing Grunt make sure your NPM is up-to-date. Use the following command in the terminal to update NPM.
This will update NPM globally on your system. Note! You may need sudo
if you don't have permissions.
Now we will install Grunt. Use the following command in the terminal to install Grunt globally.
This will put the grunt
in the system path and we will be able to use it from any directory.
Output
Looking at the above output we can see that Grunt CLI v1.2.0 was installed.
Uninstall Grunt
To uninstall Grunt globally from your Mac use the following command in terminal.
Note! You may need sudo
if you don't have permissions.
Output
Space Grunts (itch) Mac Os X
That's all for this tutorial. Have fun coding.