如何使用cytoscape.js的不稳定分支

时间:2018-10-03 21:31:14

标签: cytoscape.js

我想使用'line-gradient-stop-colors'和'line-gradient-stop-positions'能够根据一些数据向我的图形边缘添加一些颜色渐变。我看到这些样式尚未包含在主要的cytoscape版本中,因此我需要在github上使用“ unstable”分支。根据评论here 我应该能够获得分支并进行构建。我能够使分支执行此操作(然后,我可以在node_modules上看到)

npm install git://github.com/cytoscape/cytoscape.js.git#unstable --save

但是如何进行构建,以便可以在vue应用程序上使用此版本?以及如何导入?谢谢!

1 个答案:

答案 0 :(得分:1)

请参见Cytoscape.js信息库中的readme file。将目录更改为node_modules/cytoscape/后,首先需要执行npm install,然后使用npm run dist进行构建。

cd node_modules/cytoscape/
npm install
npm run dist

构建后,您应该可以正常导入它。