A Progressive Web Application (PWA) that scans barcodes of various formats, using the Barcode Detection API.
[!NOTE] The Barcode Detection API is part of the Fugu project. Currently it is supported only on Chromium browsers in MacOS and Android. For non-supporting browsers, a polyfill is used.
Some of the key features of the application include:
The following screenshots show the application in action:
Below are the instructions for setting up the development environment.
Clone the repository to your local machine:
git clone git@github.com:georapbox/barcode-scanner.git
Navigate to the project's directory and install the dependencies:
npm install
To run the application in development mode, run the following command:
npm start -- --open
This will start the development server and open the application in your default web browser.
To build the application for production, run the following command:
npm run build
This will create a dist
directory containing the production build of the application.
To deploy the application, run the following command:
npm run deploy
This will build the application first and then deploy it to GitHub Pages in the gh-pages
branch.