Skip to main content
Version: 7.0.0

Installation

This page describes how to integrate the Scandit Data Capture SDK into your web project. You can consume the Scandit Data Capture SDK Web packages in two ways:

  • as an external resource from a CDN in HTML
  • as package dependency via npm.

Scandit Data Capture SDKs npm packages are distributed under @scandit/ scope.

You need to add the @scandit/web-datacapture-core package, which contains the shared functionality used by the other data capture packages.

If you’re using barcodecapture-related functionalities, make sure to also add the:

  • @scandit/web-datacapture-barcode package, and/or
  • @scandit/web-datacapture-parser

In addition, you need to add @scandit/web-datacapture-id if you want to scan personal identification documents, such as identity cards, passports or visas. See the ID Capture documentation to learn more.

tip

You can safely remove barcode or id dependencies if you are not going to use their features.

Prerequisites

Before you begin, make sure you have the following prerequisites in place:

  • The latest stable version of Node.js and npm (required only if including and building the SDK as part of an app, instead of just including it as an external resource from a CDN in HTML).
  • Valid Scandit Data Capture SDK license, sign up for a free trial if you don't already have a license key
warning

Devices running the Scandit Data Capture SDK need to have a GPU and run a browser capable of making it available (requires WebGL - current support? and OffscreenCanvas - current support?) or the performance will drastically decrease.

Install via CDN

You can use the jsDelivr or UNPKG CDN to specify a certain version (or range) and include and import from our library as follows. This example imports the core and barcode capture packages:

<!-- 
You can optionally preload the modules.
More info about this feature here https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/modulepreload
-->
<link
rel="modulepreload"
href="https://cdn.jsdelivr.net/npm/scandit-web-datacapture-core@7.0/build/js/index.js"
/>
<link
rel="modulepreload"
href="https://cdn.jsdelivr.net/npm/scandit-web-datacapture-barcode@7.0/build/js/index.js"
/>
<!-- polyfill browsers not supporting import maps. use the latest version from here https://github.com/guybedford/es-module-shims/releases -->
<script async src="https://ga.jspm.io/npm:es-module-shims@1.10.0/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"@scandit/web-datacapture-core": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/build/js/index.js",
"@scandit/web-datacapture-barcode": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/build/js/index.js",
"@scandit/web-datacapture-barcode/": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/",
"@scandit/web-datacapture-core/": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/"
}
}
</script>

<script type="module">
// Import only the necessary items is recommended
import { DataCaptureContext, Camera, configure } from '@scandit/web-datacapture-core';
import { BarcodeCapture, barcodeCaptureLoader } from '@scandit/web-datacapture-barcode';

// Insert your code here
</script>
OR
<script type="module">
// OR import everything
import * as SDCCore from '@scandit/web-datacapture-core';
import * as SDCBarcode from '@scandit/web-datacapture-barcode';

// Insert your code here
</script>
note

The alternative link(s) for UNPKG are here for Core and here for Barcode.

Alternatively, you can also put the same JavaScript/TypeScript code in a separate file via:

<script type="module" src="script.js"></script>

Complete Example

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Scandit CDN Simple sample</title>
<script type="importmap">
{
"imports": {
"@scandit/web-datacapture-core": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/build/js/index.js",
"@scandit/web-datacapture-barcode": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/build/js/index.js",

"@scandit/web-datacapture-barcode/": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/",
"@scandit/web-datacapture-core/": "https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/"
}
}
</script>
<link rel="modulepreload" href="https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/build/js/index.js" />
<link rel="modulepreload" href="https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/build/js/index.js" />
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
#app {
height: 100%;
}
</style>
<!-- Check the latest version here https://github.com/guybedford/es-module-shims/releases -->
<script async src="https://ga.jspm.io/npm:es-module-shims@1.10.0/dist/es-module-shims.js"></script>
<script type="module">
import {
configure,
DataCaptureView,
Camera,
DataCaptureContext,
FrameSourceState
} from "@scandit/web-datacapture-core";

import {
barcodeCaptureLoader,
BarcodeCaptureSettings,
BarcodeCapture,
Symbology
} from "@scandit/web-datacapture-barcode";

let view = new DataCaptureView();
view.connectToElement(document.getElementById("app"));
view.showProgressBar();

await configure({
licenseKey: "",
libraryLocation:
"https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-barcode@7.0/sdc-lib/",
moduleLoaders: [barcodeCaptureLoader()],
});
view.hideProgressBar();

const camera = Camera.default;

// Depending on the use case further camera settings adjustments can be made here.
const context = await DataCaptureContext.create();
await view.setContext(context);

const cameraSettings = BarcodeCapture.recommendedCameraSettings;
await camera.applySettings(cameraSettings);
await context.setFrameSource(camera);

await context.setFrameSource(camera);
await context.frameSource.switchToDesiredState(FrameSourceState.On);

const settings = new BarcodeCaptureSettings();
settings.enableSymbologies([Symbology.Code128, Symbology.QR]);

let barcodeCapture = await BarcodeCapture.forContext(
context,
settings
);

await barcodeCapture.setEnabled(true);

</script>
</head>
<body>
<div id="app"></div>
</body>
</html>

Install via npm

To add the packages via npm, you run the following command from your project’s root folder:

npm install --save @scandit/web-datacapture-core @scandit/web-datacapture-barcode
note

You can also specify a version @<version>.

Then import the package in your JavaScript/TypeScript code by using:

// Import only the necessary items is recommended
import { DataCaptureContext, Camera, configure } from '@scandit/web-datacapture-core';
import { BarcodeCapture, barcodeCaptureLoader } from '@scandit/web-datacapture-barcode';

// Insert your code here

OR

// Import everything
import * as SDCCore from '@scandit/web-datacapture-core';
import * as SDCBarcode from '@scandit/web-datacapture-barcode';

// Insert your code here

Configure the Library

The library needs to be configured and initialized before it can be used, this is done via the configure function. Note that the configuration expects a valid license key as part of the options.

tip

We recommended to call configure as soon as possible in your application so that the files are already downloaded and initialized when the capture process is started.

The LibraryLocation configuration option must be provided and point to the location of the Scandit Data Capture library/engine location (external WebAssembly files): scandit-datacapture-sdk\*.min.js and scandit-datacapture-sdk\*.wasm.

WebAssembly requires these separate files which are loaded by our main library at runtime. They can be found inside the engine folder in the library you either added and installed via npm or access via a CDN. If you added and installed the library, these files should be put in a path that's accessible to be downloaded by the running library script.

The configuration option that you provide should then point to the folder containing these files, either as a path of your website or an absolute URL (like the CDN one). By default the library will look at the root of your website. If you use a CDN to access the library, you will want to set this to the following values depending on the data capture mode you are using:

  • For Barcode Capture:
    • https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/build/engine/,
    • https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-core@7.0/build/engine/, or similar.
  • For ID Capture:
    • https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-id@7.0/build/engine/,
    • https://cdn.jsdelivr.net/npm/@scandit/web-datacapture-id@7.0/build/engine/, or similar.

Please ensure that the library version of the imported library corresponds to the version of the external Scandit Data Capture library/engine files retrieved via the libraryLocation option, either by ensuring the served files are up-to-date or the path/URL specifies a specific version.

In case a common CDN is used (jsDelivr or UNPKG) the library will automatically, internally set up the correct URLs pointing to the files needed for the matching library version. It is highly recommended to handle the serving of these files yourself on your website/server, ensuring optimal compression, correct WASM files MIME type, no request redirections, and correct caching headers usage. This will aid in faster loading.

Additional Information

Camera Permissions

When using the Scandit Data Capture SDK you will likely want to set the camera as the frame source for various capture modes. The camera permissions are handled by the browser, and can only be granted if a secure context is used and have to be accepted by the user explicitly.

Progressive Web App (PWA)

You can configure the scanner to work offline making the web app progressive (Progressive Web App). There are some settings to consider. If you use workbox a tool that uses workbox under the hood like Vite PWA plugin, you must set also these options:

{
globPatterns: ["**/*.{css,html,ico,png,svg,woff2}", "**/*.{wasm,js}"], // Be sure to add also .wasm
maximumFileSizeToCacheInBytes: 8 * 1024 * 1024, // Increase size cache up to 8mb
ignoreURLParametersMatching: [/^v/], // Ignores ?v=x.x.x query string param when using importScripts inside worker
}

With these settings in place and the service worker correctly configured, you will be able to have a full offline scanning experience.

warning

On iOS there's an issue while accessing the video stream inside a progressive web app. The issue is flaky and gets reopened periodically. Check the webkit tracker if you experience similar issues.

Electron

You can configure the Scandit SDK to work into an Electron app. The register method must be called inside the main.ts file passing down some dependencies and the publicKey. The publicKey will be used to decrypt the encrypted license key file that must be placed into the ConfigureOptions.licenseDataPath option:

// electron main.ts
import { register, unregister } from '@scandit/web-datacapture-core/build/electron/main';
import { app, BrowserWindow, ipcMain } from 'electron';
import fs from 'node:fs/promises';
import crypto from 'node:crypto';
import path from 'node:path';

const mainWindow = new BrowserWindow({
...,
});

register({ fs, ipcMain, app, path, crypto }, publicKey);

app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
unregister()
}
});
// preload.ts
import { ipcRenderer } from 'electron';
import { preloadBindings } from '@scandit/web-datacapture-core/build/electron/preload';
preloadBindings(ipcRenderer);
// renderer.ts
await configure({
// In Electron context the license will be decrypted internally.
// The path of the encrypted file is path.join(app.getAppPath(), licenseDataPath)
licenseDataPath: './out/renderer/data/sdc-license.data',
libraryLocation: new URL('library/engine/', document.baseURI).toString(),
moduleLoaders: [barcodeCaptureLoader()]
});

You can encrypt your license key with this small Node.js script. Then you should copy the sdc-license.data file in the licenseDataPath in order to be correctly read at runtime in the configure phase.

You can also check the related sample.

const crypto = require('node:crypto')
const fs = require('node:fs/promises')

;(async function createLicenseAndPublicKey() {

const data = process.env.SDC_LICENSE_KEY
if (data == null || data === '') {
throw new Error('could not encrypt empty or null string')
}

const key = crypto.randomBytes(32)
const iv = crypto.randomBytes(16)
const keyAndIV = `${key.toString('base64')}:${iv.toString('base64')}`

const cipher = crypto.createCipheriv('aes-256-cbc', key, iv)
let encryptedText = cipher.update(text, 'utf8', 'hex')
encryptedText += cipher.final('hex')

await fs.writeFile('sdc-license.data', Buffer.from(encryptedText), 'utf8')
// Save the key to a file
await fs.writeFile(
'sdc-public-key',
keyAndIV,
'utf8'
)
})();
warning

It is recommended to NOT store the public key locally. We also recommend you enable source code protection with bytenode.

Third-party Licenses

The Scandit Data Capture SDK relies on several third-party, open-source software libraries. Your application must display the license information for these libraries in many cases.

The Scandit SDK provides a convenient API that you can use to fetch the corresponding text and attributions for all third-party software:

  • DataCaptureContext.openSourceSoftwareLicenseInfo()