You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

react-simple-qr-code-scanner

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-simple-qr-code-scanner

A super simple qr code scanner

1.5.0
Source
npm
Version published
Weekly downloads
58
-23.68%
Maintainers
1
Weekly downloads
 
Created
Source

A simple qr-code scanner for react

This is a simple qr-code scanner component for react

Installing

A step by step series guide to setup this component.

Start a node project

npm init

Install the library with composer

npm i react-simple-qr-code-scanner

Demo

import { QrCodeScanner } from "react-simple-qr-code-scanner";
function App() {
  return (
    <QrCodeScanner
      onResult={(result) => {
        console.log(result);
      }}
      Errors={(error) => {
        //console.log(error);
      }},
      facingMode={"enviroment"} //or user
    />
  );
}

License

This project is licensed under the MIT License - see the LICENSE file for details

Keywords

react

FAQs

Package last updated on 10 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts