JsStore Constructor Uncaught TypeError

199 Views Asked by At

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.

1

There are 1 best solutions below

0
William Odiomonafe On

This was as a result of using the Versioned scripts @3.0.0. I used the latest scripts as below:

and it worked.