To install PouchDB using jspm:
jspm install pouchdb=npm:pouchdb
then import:
import PouchDB from 'pouchdb';
xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>pouchdb test</title>
</head>
<body>
<h1>pouchdb test</h1>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('main.js');
</script>
</body>
</html>