Skip to content

devpato/react-NFC-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REACT NFC Sample App

About

This is a simple sample app demostrating the usage of the Web NFC API.

To get the Web NFC API working you will need an Android Device with Google Chrome and your web app will need to be hosted using https.

This is the sample app in action.

alt nfc tag

This project was bootstrapped with Create React App.

If you want to see an Angular app using NFCs look at this video example and visit this repo by the awesome Wassim. Thanks to him I was introduced to the Web NFC API.

WTF is NFC?

NFC stands for Near-Field Communication. NFC is a set of communication protocols for communication between two electronic devices.

Electromagnetic fields can be used to transmit data or induce electrical currents in a receiving device. Passive NFC devices draw power from the fields produced by active devices, but the range is short.

alt NFC Tag

You can buy NFC Tags on Amazon. These tags can contain 540KB of data.

Usages

NFCs can have multiple usages, some of the usages are:

  • Making contactless payments like Google and Apple Pay
  • Opening a door using your badge
  • Opening a link
  • Product control in a warehouse

To learn about the usages visit this forum.

Getting Started with the Web NFC API

This project uses 4 methods of the Web NFC API

  1. Scan: Returns a Promise resolved if starting NFC scan was successful.

    ndef.scan()

  2. Reading: An event fired when a new reading is available.

    ndef.onreading()

  3. Reading Error: An event fired when an error happened during reading.

    ndef.onreadingerror()

  4. Write: Returns a Promise resolved if writing the message (String, ArrayBuffer or NDEF record) with options was successful. ndef.write()

Using the Web NFC API methods

Scan, Reading, Reading Error

const scan = async() =>
    if ("NDEFReader" in window) {
        try {
            const ndef = new window.NDEFReader();
            await ndef.scan();

            console.log("Scan started successfully.");
            ndef.onreadingerror = () => {
                console.log("Cannot read data from the NFC tag. Try another one?");
            };

            ndef.onreading = (event) => {
                console.log("NDEF message read.");
                onReading(event); //Find function below
            };
        } catch (error) {
            console.log(`Error! Scan failed to start: ${error}.`);
        }
    }
};

The onReading method grabs the message and serial number inside of the NFC tag, the uses the array of reacord inside of the message and decodes the information so its readable to humans.

const onReading = ({message, serialNumber}) => {
    console.log(serialNumber);
    for (const record of message.records) {
        switch (record.recordType) {
            case "text":
                const textDecoder = new TextDecoder(record.encoding);
                console.log("Message": textDecoder.decode(record.data));
                break;
            case "url":
                // TODO: Read URL record with record data.
                break;
            default:
                // TODO: Handle other records with record data.
        }
    }
};

Write

const onWrite = () => {
  try {
    const ndef = new window.NDEFReader();
    await ndef.write({
      records: [{ recordType: "text", data: "Hellow World!" }],
    });
    console.log(`Value Saved!`);
  } catch (error) {
    console.log(error);
  }
};

Learn More & Resources

Available Scripts

In the project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.