How to get a copy of Dynamsoft Barcode Reader (DBR) JS deployable files (source code, etc.) ?
You can obtain a copy of the DBR JS deployable files using one of the following methods:
1. Download the DBR-JS package from website
Visit the Dynamsoft website or the Dynamsoft Customer Portal (select the “Download Center” menu on the left-hand side).
The resources can be found at the path: dynamsoft-barcode-reader-js-{version-number}\dist.
2. Install the library via npm
For Version 10 and Above
Use the command:
npm i dynamsoft-barcode-reader-bundle@{version-number} -E
Please replace “{version-number}” with the exact version you are currently using. For example:
npm i dynamsoft-barcode-reader-bundle@11.4.2001 -E
For Version 9
Use the command:
npm install dynamsoft-javascript-barcode --save
3. Install the library via yarn
For Version 10 and Above
Use the command:
yarn add dynamsoft-barcode-reader-bundle@{version-number} -E
For example:
yarn add dynamsoft-barcode-reader-bundle@11.4.2001 -E
For Version 9
yarn add dynamsoft-javascript-barcode