qrcode
The best web based QR Code reader on the web
File Explorer
- settings.json
- apple-touch-icon.png
- chrome-touch-icon-192x192.png
- icon-1024x1024.png
- icon-128x128.png
- ms-touch-icon-144x144-precomposed.png
- help_outline-24px.svg
- ic_camera_front_24px.svg
- ic_camera_rear_24px.svg
- ic_file_upload_24px.svg
- CameraFallbackManager.js
- CameraManager.js
- CameraSource.js
- WebCamManager.js
- QRCodeCallbackController.js
- QRCodeHelpManager.js
- QRCodeManager.js
- QRCodeCamera.js
- a_gf256.js
- a_qrcode.js
- alignpat.js
- bitmat.js
- bmparser.js
- datablock.js
- databr.js
- datamask.js
- decoder.js
- detector.js
- errorlevel.js
- findpat.js
- formatinf.js
- gf256poly.js
- grid.js
- index.js
- rsdecoder.js
- version.js
- z_export.js
- fileManifest.js
- router.js
- url-utils.js
- comlink.js
- main.js
- main.mjs.old
- qrclient.js
- qrcode-lib.js
- qrworker.js
- all.css
- app.css
- camera.css
- QRCodeAboutDialog.css
- QRCodeSuccessDialog.css
- about.html
- favicon.ico
- humans.txt
- index.html
- manifest.json
- manifest.webapp
- robots.txt
- sw.js
- webstore-manifest.json
- .editorconfig
- .gitattributes
- .gitignore
- gulpfile.babel.js.old
- LICENSE
- now.json
- package-lock.json
- package.json
- README.md
- vite.config.js
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
