dynamsoft-barcode-reader-bundle 11.2.2000 → 11.2.4000-beta-202511091754

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.html CHANGED
@@ -221,15 +221,13 @@
221
221
  <div id='content'>
222
222
  <h1 id="build-a-web-based-barcode-scanner-using-just-a-few-lines-of-javascript">Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript</h1>
223
223
  <!-- Don't forget to add the TOC & update license section, which is useful for npm README.-->
224
- <ul>
225
- <li><a href="#build-a-web-based-barcode-scanner-using-just-a-few-lines-of-javascript">Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript</a></li>
226
- <li><a href="#license">License</a></li>
227
- <li><a href="#quick-start-hello-world-example">Quick Start: Hello World Example</a><ul>
228
- <li><a href="#step-1-setting-up-the-html-and-including-the-barcode-scanner">Step 1: Setting up the HTML and Including the Barcode Scanner</a></li>
229
- <li><a href="#step-2-initializing-the-barcode-scanner">Step 2: Initializing the Barcode Scanner</a></li>
230
- <li><a href="#step-3-launching-the-barcode-scanner">Step 3: Launching the Barcode Scanner</a></li></ul></li>
231
- <li><a href="#next-steps">Next Steps</a></li>
232
- </ul>
224
+ <!-- - [Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript](#build-a-web-based-barcode-scanner-using-just-a-few-lines-of-javascript)
225
+ - [License](#license)
226
+ - [Quick Start: Hello World Example](#quick-start-hello-world-example)
227
+ - [Step 1: Setting up the HTML and Including the Barcode Scanner](#step-1-setting-up-the-html-and-including-the-barcode-scanner)
228
+ - [Step 2: Initializing the Barcode Scanner](#step-2-initializing-the-barcode-scanner)
229
+ - [Step 3: Launching the Barcode Scanner](#step-3-launching-the-barcode-scanner)
230
+ - [Next Steps](#next-steps) -->
233
231
  <p>This user guide provides a step-by-step walkthrough of a "Hello World" web application using the <code>BarcodeScanner</code> JavaScript Edition.</p>
234
232
  <p>The <code>BarcodeScanner</code> class offers the following features:</p>
235
233
  <ul>
@@ -259,10 +257,9 @@ Thanks to its simplified APIs and built-in UI for video streaming, you can imple
259
257
  Please refer to <a href="https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/faq/system-requirement.html">system requirements</a> for more details.</p>
260
258
  </blockquote>
261
259
  <h2 id="license">License</h2>
262
- <p>When getting started with Barcode Scanner, we recommend <a href="https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=npm&package=js">getting your own 30-day trial license</a></p>
263
- <!-- When getting started with Barcode Scanner, we recommend getting your own 30-day trial license.
264
-
265
- {% include trialLicense.html %} -->
260
+ <!-- When getting started with Barcode Scanner, we recommend [getting your own 30-day trial license](https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=npm&package=js) -->
261
+ <p>When getting started with Barcode Scanner, we recommend getting your own 30-day trial license.</p>
262
+ <p>{% include trialLicense.html %}</p>
266
263
  <h2 id="quick-start-hello-world-example">Quick Start: Hello World Example</h2>
267
264
  <pre><code class="hljs html language-html"><span class="hljs-meta">&lt;!DOCTYPE <span class="hljs-meta-keyword">html</span>&gt;</span>
268
265
  <span class="hljs-tag">&lt;<span class="hljs-name">html</span> <span class="hljs-attr">lang</span>=<span class="hljs-string">&quot;en&quot;</span>&gt;</span>
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript
2
2
 
3
3
  <!-- Don't forget to add the TOC & update license section, which is useful for npm README.-->
4
- - [Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript](#build-a-web-based-barcode-scanner-using-just-a-few-lines-of-javascript)
4
+ <!-- - [Build a Web-Based Barcode Scanner Using Just a Few Lines of JavaScript](#build-a-web-based-barcode-scanner-using-just-a-few-lines-of-javascript)
5
5
  - [License](#license)
6
6
  - [Quick Start: Hello World Example](#quick-start-hello-world-example)
7
7
  - [Step 1: Setting up the HTML and Including the Barcode Scanner](#step-1-setting-up-the-html-and-including-the-barcode-scanner)
8
8
  - [Step 2: Initializing the Barcode Scanner](#step-2-initializing-the-barcode-scanner)
9
9
  - [Step 3: Launching the Barcode Scanner](#step-3-launching-the-barcode-scanner)
10
- - [Next Steps](#next-steps)
10
+ - [Next Steps](#next-steps) -->
11
11
 
12
12
  This user guide provides a step-by-step walkthrough of a "Hello World" web application using the `BarcodeScanner` JavaScript Edition.
13
13
 
@@ -44,11 +44,11 @@ new Dynamsoft.BarcodeScanner().launch().then(result=>alert(result.barcodeResults
44
44
 
45
45
  ## License
46
46
 
47
- When getting started with Barcode Scanner, we recommend [getting your own 30-day trial license](https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=npm&package=js)
47
+ <!-- When getting started with Barcode Scanner, we recommend [getting your own 30-day trial license](https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=npm&package=js) -->
48
48
 
49
- <!-- When getting started with Barcode Scanner, we recommend getting your own 30-day trial license.
49
+ When getting started with Barcode Scanner, we recommend getting your own 30-day trial license.
50
50
 
51
- {% include trialLicense.html %} -->
51
+ {% include trialLicense.html %}
52
52
 
53
53
  ## Quick Start: Hello World Example
54
54