博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Yarn] Use Yarn to Create an Alternative Import Name of an Installed Library
阅读量:5988 次
发布时间:2019-06-20

本文共 533 字,大约阅读时间需要 1 分钟。

In this lesson we'll show how to use yarn to alias the names of same npm libraries but install different versions. This could allow for easy migrating from one library version to an upgraded version.

 

You can install lib by using Yarn and give the lib an alias name:

yarn add lodash3@npm:lodash^3  // install lodash version 3yarn add lodash4@npm:lodash^4  // install lodash version 4

 

Then you can use it:

import lodash3 from 'lodash3';import lodash4 from 'lodash4';

 

Note: it only works when you and your team use Yarn, npm won't work.

转载地址:http://hajlx.baihongyu.com/

你可能感兴趣的文章
LNMP-源码 PHP7
查看>>
简单干净的C#方法设计案例:SFCUI.AjaxValue()之三
查看>>
敏捷开发免费管理工具——火星人预览之五:常见问题问答
查看>>
敏捷开发一千零一问系列之十四:敏捷开发加班吗?
查看>>
文档:Windows Server 2012群集-移动虚拟机存储至共享
查看>>
sendmail
查看>>
软件构建、测试和部署自动化
查看>>
”计算机操作系统“学习笔记2
查看>>
VMware 虚拟机防拷贝方案?
查看>>
停止linux的ntpd服务
查看>>
因果性≠相关性
查看>>
Gvim在windows服务器中的安装部署
查看>>
LVS主要的调度算法
查看>>
Sublime写作
查看>>
Nginx流量拷贝模块—ngx_http_mirror_module分析
查看>>
我的友情链接
查看>>
.net面试题集锦(1
查看>>
Xcode4.2中的strong的解释
查看>>
MongoDB 的 GridFS 详细分析
查看>>
pfsense 2.3企业应用-WEB管理向导
查看>>