I use jspm to intall npm:fb
, and use in my js, but I get
GET /jspm_packages/npm/crypto@0.0.3.js 404
my step:
jspm init
jspm install npm:fb
Should I add something to fix it?
My 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>
My lib/main.js
import fb from 'fb'
export default {}