LiteMol:用于在浏览器中处理3D宏分子数据的强大而快速的工具
GitHub地址:https://github.com/dsehnal/LiteMol
上述链接有详细使用介绍,这里简单梳理流程。
需要先安装node.js
NodeJS安装及部署(Linux系统)
通过npm安装http-server
通过npm安装typescript对应版本,版本号可以在项目根目录下的package.json查看
npm版本号说明:
我这里是^2.9.1
查看当前typescript的版本号:
clone项目到本地
git clone https://github.com/dsehnal/LiteMol.git
可以先看看示例里面的预览。
报错信息1:
JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists.
解决方法:
参考文章:https://www.jianshu.com/p/ece127ffc996
报错信息2:
Property 'props' does not exist on type 'Origins'.
解决方法:TypeScript 错误property does not exist on type Object
新的报错信息:
Cannot find namespace 'JSX'.
未完,待续。。。。