so I get an error on my console when importing and calling the JsStore library object from within a service worker.
importScripts('https://cdn.jsdelivr.net/npm/[email protected]/dist/jsstore.min.js');
importScripts('https://cdn.jsdelivr.net/npm/[email protected]/dist/jsstore.worker.min.js');
var connection = new JsStore.Connection();
console.log(connection);
This gives a console error:
Uncaught TypeError: JsStore is not a constructor
Documentation which I followed.
This was as a result of using the Versioned scripts @3.0.0. I used the latest scripts as below:
and it worked.