Skip to content

Frontend

Benoît edited this page Jan 15, 2018 · 2 revisions

Install frontend tools

node js & npm

sudo apt-get install nodejs npm

grunt

sudo npm install -g grunt-cli

yarn

Yarn is the tool that manages front end dependencies. Yarn must be installed:

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
sudo apt-get update && sudo apt-get install yarn
Clone this wiki locally