我使用 jspm 来安装npm:fb
,并在我的 js 中使用,但我得到了
获取 /jspm_packages/npm/crypto@0.0.3.js 404
我的步骤:
jspm 初始化
jspm 安装 npm:fb
我应该添加一些东西来修复它吗?
我的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>try fb</title>
</head>
<body>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('lib/main.js')
</script>
</body>
</html>
我的lib/main.js
import fb from 'fb'
export default {}