You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- - In some rare cases (such as some restricted areas), you might not be able to access the CDN. If this happens, you can use the following files for the test.
However, please **DO NOT** use `download2.dynamsoft.com` resources in a production application as they are for temporary testing purposes only. Instead, you can try hosting the SDK yourself. -->
225
225
226
226
- In frameworks like React, Vue and Angular, you may want to add the package as a dependency.
227
227
228
228
```sh
229
-
npm i dynamsoft-barcode-reader-bundle@11.4.2000 -E
229
+
npm i dynamsoft-barcode-reader-bundle@11.4.2001 -E
NOTE that in frameworks, you need to [specify the location of the engine files](#2-optional-specify-the-location-of-the-engine-files).
@@ -248,7 +248,7 @@ Besides using the public CDN, you can also download the SDK and host its files o
248
248
- From npm
249
249
250
250
```sh
251
-
npm i dynamsoft-barcode-reader-bundle@11.4.2000 -E
251
+
npm i dynamsoft-barcode-reader-bundle@11.4.2001 -E
252
252
```
253
253
254
254
The resources are located at the path `node_modules/<pkg>`, without `@<version>`. You must copy "dynamsoft-xxx" packages elsewhere and add `@<version>`. The `<version>` can be obtained from `package.json` of each package. Another thing to do is to [specify the engineResourcePaths](#2-optional-specify-the-location-of-the-engine-files) so that the SDK can correctly locate the resources.
@@ -257,7 +257,7 @@ Besides using the public CDN, you can also download the SDK and host its files o
The preset templates have many more settings that can be customized to suit your use case best. If you [download the SDK from Dynamsoft website](https://www.dynamsoft.com/barcode-reader/downloads/1000003-confirmation/), you can find the templates under
3. Confirm the installation by checking the `package.json`. You should see:
@@ -34,12 +34,12 @@ Assuming you have an existing project using a framework, you should have a `pack
34
34
...
35
35
"dependencies": {
36
36
...
37
-
"dynamsoft-barcode-reader-bundle": "11.4.2000"
37
+
"dynamsoft-barcode-reader-bundle": "11.4.2001"
38
38
}
39
39
}
40
40
```
41
41
42
-
Notice that there is no `^` before `11.4.2000`. No `^` indicates an exact version, ensuring stability and avoids automatic upgrades even without `package-lock.json`.
42
+
Notice that there is no `^` before `11.4.2001`. No `^` indicates an exact version, ensuring stability and avoids automatic upgrades even without `package-lock.json`.
43
43
44
44
While we keep the SDK's external interface relatively stable, the SDK's internal communication often change with each new version. These changes can potentially lead to compatibility issues with `engineResourcePaths` settings. To prevent any unexpected difficulties and surprises, it's essential to use the exact version of the SDK.
0 commit comments