wiki/HowtoYarn.md

17 lines
371 B
Markdown
Raw Normal View History

2017-05-16 15:44:30 +02:00
---
categories: web
title: Howto Yarn
...
* Documentation : <https://yarnpkg.com/en/docs>
[Yarn](https://yarnpkg.com) est un gestionnaire de packages.
## Installation
~~~
2017-06-09 16:27:32 +02:00
# wget https://dl.yarnpkg.com/debian/pubkey.gpg -O - | apt-key add -
2017-05-16 15:44:30 +02:00
# echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list
# apt update
2017-05-16 15:44:52 +02:00
# apt install yarn
2017-05-16 15:44:30 +02:00
~~~