作者:徐國煇_457 | 来源:互联网 | 2023-07-26 18:58
本文由编程笔记#小编为大家整理,主要介绍了markdown 纱线可以做到吗?相关的知识,希望对你有一定的参考价值。
# Yarn can do that?
https://yarnpkg.com/
## Install package directly from GitHub/GitLab (without register to npmjs.com)
```
yarn add
# Example
yarn add mul14/simplemath
```
```
yarn add
# GitHub Example
yarn add https://github.com/mul14/simplemath.git
yarn add https://github.com/mul14/simplemath
yarn add git+ssh://git@github.com:mul14/simplemath.git
yarn add git+https://git@github.com/mul14/simplemath.git
# GitLab Example
yarn add https://gitlab.com/mul14/simplemath.git
yarn add https://gitlab.com/mul14/simplemath
yarn add git+ssh://git@gitlab.com:mul14/simplemath.git
yarn add git+https://git@gitlab.com/mul14/simplemath.git
```