How to check the version of the JS SDK I am currently using?
For version 11 and above
- Check the version of Barcode Reader module using the
getVersionAPIDynamsoft.DBR.BarcodeReaderModule.getVersion() - If you are using the library via npm or yarn, then you can check the installed version of the package via
npm list dynamsoft-barcode-reader-bundle - If you are including the library via the CDN link, then the version number should be mentioned in that reference link.
For version 10
- Check the version of Barcode Reader module
Dynamsoft.DBR.BarcodeReaderModule.getVersion() - If you are using the library via npm or yarn, then you can check the installed version of the package via
npm list dynamsoft-barcode-reader - If you are including the library via the CDN link, then the version number should be mentioned in that reference link.
For version 9
There are multiple ways to check the version currently being used -
- The first way is to use the version API. Using this API in the browser console should print out the version of the library being used by the web app.
-
If you are using the library via npm or yarn, then you can check the installed version of the package via
npm list dynamsoft-javascript-barcode - If you are including the library via the CDN link, then the version number should be mentioned in that reference link.