Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Native Camera | 9,630 | 1,440 | 150 | 3 days ago | 203 | September 21, 2021 | 144 | Java | ||
A Camera component for React Native. Also supports barcode scanning! | ||||||||||
Barcodescanner | 5,233 | 5 | 3 years ago | 27 | August 19, 2017 | other | Java | |||
Barcode Scanner Libraries for Android | ||||||||||
Quaggajs | 4,218 | 126 | 34 | 2 years ago | 41 | June 07, 2017 | 207 | mit | JavaScript | |
An advanced barcode-scanner written in JavaScript | ||||||||||
Html5 Qrcode | 3,258 | 4 | 5 days ago | 46 | April 07, 2022 | 229 | apache-2.0 | TypeScript | ||
A cross platform HTML5 QR code reader. See end to end implementation at: https://scanapp.org | ||||||||||
React Native Qrcode Scanner | 1,986 | 171 | 9 | 24 days ago | 51 | February 11, 2022 | 123 | mit | JavaScript | |
A QR code scanner component for React Native. | ||||||||||
React Native Camera Kit | 1,971 | 46 | 11 | 13 days ago | 185 | September 15, 2022 | 76 | mit | Objective-C | |
A high performance, easy to use, rock solid camera library for React Native apps. | ||||||||||
Qrcodereaderview | 1,770 | 231 | 3 years ago | 2 | March 29, 2017 | 49 | Java | |||
Modification of ZXING Barcode Scanner project for easy Android QR-Code detection and AR purposes | ||||||||||
Barcodescanner | 1,572 | 33 | 10 months ago | 16 | March 11, 2018 | 21 | other | Swift | ||
:mag_right: A simple and beautiful barcode scanner. | ||||||||||
Mtbbarcodescanner | 1,077 | 42 | 3 years ago | 44 | October 03, 2018 | 2 | mit | Objective-C | ||
A lightweight, easy-to-use barcode scanning library for iOS 8+ | ||||||||||
Codescanner | 690 | a month ago | 8 | mit | Swift | |||||
A SwiftUI view that is able to scan barcodes, QR codes, and more, and send back what was found. |
See this issue
We are looking for maintainers for this package, or to depreciate this in favor of react-native-vision-camera or expo-camera, if nobody want to maintain this package.
Follow our docs here https://react-native-camera.github.io/react-native-camera/
If you use this library on your commercial/personal projects, you can help us by funding the work on specific issues that you choose by using IssueHunt.io!
This gives you the power to prioritize our work and support the project contributors. Moreover it'll guarantee the project will be updated and maintained in the long run.
Available as part of the Tidelift Subscription
The maintainers of react-native-camera and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.
You can also fund this project using open collective
Support us with a monthly donation and help us continue our activities. [Become a backer]
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
The comprehensive camera module for React Native.
Supports:
import { RNCamera, FaceDetector } from 'react-native-camera';
We recommend using the releases from npm, however if you need some features that are not published on npm yet you can install react-native-camera from git.
yarn: yarn add [email protected]+https://[email protected]/react-native-community/react-native-camera.git
npm: npm install --save [email protected]+https://[email protected]/react-native-community/react-native-camera.git
To use the camera,
<uses-permission android:name="android.permission.CAMERA" />
To enable video recording
feature you have to add the following code to the AndroidManifest.xml
:
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
...
<key>NSCameraUsageDescription</key>
<string>Your own description of the purpose</string>
...
For more information on installation, please refer to installation requirements.
For general introduction, please take a look into this RNCamera.
To report a security vulnerability, please use the
Tidelift will coordinate the fix and disclosure.