-
Introduction 💡
- what is Nodejs and it's ecosystem
- Installing Nodejs & yarn
- Text editors and IDEs
- Git & github primer
- Bash crush course
- Introduction to HTML and Bootstrap
- Basic Javascript reminder
- Choose and agree on final goals/projects
-
Basics of Node
- Design principles
- Nodejs Installed on your laptop ~ use the instructions below
- Yarn package manager ~ Instructions below
- Git software, installed
- Text-editor or IDE of choice
Download and install the files from the links below
- using Node version Manager
nvm
(Recommended way)
# Install nvm on your system
curl https://raw.githubusercontent.com/creationix/nvm/v0.24.0/install.sh | bash
# Check if nvm is installed run
nvm --version
# Install stable version of nodejs
nvm install stable
# or the latest
nvm install latest
# Choose a default version
nvm use stable
- Using package manager
# Use your distro package management tool
sudo apt install nodejs nodejs-legacy
We will use yarn
as the package manager as opposed to npm
which comes with Nodejs installation
-
Windows Just follow this Link and download and install the software
-
Linux users
# Add PPA sources
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
# Install yarn now
sudo apt-get update && sudo apt-get install yarn
# Confirm installation
yarn --version
Feel free to use any other text-editor or IDE.
Download and install git from here
sudo apt install git