现在在我的 index.html 中,我需要做
<script src="node_modules/nedb/browser-version/out/nedb.min.js"> </script>
<script>var nedb = new Nedb({filename: 'someFile2', autoload: true});
</script>
这将加载 Google Chrome 浏览器中 indexeddb 下的持久 nedb 数据库“someFile2”。
如何通过主应用程序组件或模块引导 nedb?我希望能够通过应用程序代码创建一个 nedb 数据库。
我使用带有角度 2 的 Systemjs。