Socket
Socket
Sign inDemoInstall

nfc-react-web

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

nfc-react-web

React component for the web nfc api


Version published
Maintainers
1
Weekly downloads
21
increased by61.54%

Weekly downloads

Readme

Source

Nfc React Web

React component for the web nfc api.

Installation

yarn add nfc-react-web

# or

npm install nfc-react-web

Quickstart

To read a tag:

import Nfc from 'nfc-react-web';

const App = () => (
  <Nfc
    read={data => {
      console.log(`Data read from tag: ${JSON.stringify(data)}`);
    }}
    timeout={15} // time to keep trying to read tags, in seconds
  />
);

Note: The component will only read a tag successfully once, no matter if it isn't timed out.

To write to a tag:

import Nfc from 'nfc-react-web';

const App = () => (
  <Nfc
    write="Written with nfc-react-web"
    writeCallback={error => {
      if (error) {
        console.log('An error occurred while writing to tag: ', error);
      } else {
        console.log('Data written to tag! :)');
      }
    }}
    timeout={15} // time to keep trying to write to tags, in seconds
  />
);

Note: Even when an error happens, the write process will still try to write to a tag.

Caveat

The web nfc api is still experimental. To enable it on Chrome in your android device, open a new tab and navigate to chrome://flags, search form WebNFC and enable it.

FAQs

Last updated on 01 Mar 2018

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