Socket
Socket
Sign inDemoInstall

react-qrcode

Package Overview
Dependencies
33
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-qrcode

🤳 A React component for QR code generation with `qrcode`


Version published
Weekly downloads
2.3K
increased by23.44%
Maintainers
2
Install size
43.4 kB
Created
Weekly downloads
 

Readme

Source

ReactQRCode

🤳 A React component for QR code generation with qrcode

Usage

// Component
import ReactDOM from 'react-dom'
import { QRCode } from 'react-qrcode'

ReactDOM.render(<QRCode value="https://www.1stg.me" />)

// hooks
import { useQRCode } from 'react-qrcode'

export const App = () => {
  const [value, setValue] = useState('https://www.1stg.me')
  const dataUrl = useQRCode(value)
  return (
    <>
      <div>dataUrl: {dataUrl}</div>
      <img src={dataUrl} />
      <input onChange={e => setValue(e.currentTarget.value)} />
    </>
  )
}

Available Props

proptype (range)default value
versionnumber (1-40)N/A
errorCorrectionLevelString ('low', 'medium', 'quartile', 'high', 'L', 'M', 'Q', 'H')'M'
maskPatternnumber (0-7)N/A
toSJISFuncFunctionN/A
marginnumber4
scalenumber4
widthnumberN/A
color{ dark: string; light:string }{ dark: '#000000ff', light: '#ffffffff' }
typestring ('image/png', 'image/jpeg', 'image/webp')'image/png'
qualitynumber(0-1)0.92
value`stringArray<{ data: string; mode?: string }>`

Keywords

FAQs

Last updated on 30 Jan 2020

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc