Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.

Latest commit

 

History

History
60 lines (41 loc) · 1.3 KB

File metadata and controls

60 lines (41 loc) · 1.3 KB

NFC Thing

NFC Thing is a web app that lets you read and write NFC tags using just your browser. It works with the Web NFC API, which means you don't need to install any native apps.

Features

  • Read NFC tags
  • Write to NFC tags
  • Works in the browser (no need for a separate app)
  • Easy to use with our custom React hooks

Getting Started

  1. Clone the repository:

    git clone https://github.com/hyperlaunch/NFC-Thing.git
    cd NFC-Thing
  2. Install the dependencies:

    bun install
  3. Run the app in development mode:

    bun run dev
  4. Open the app in Chrome on your Android device.

Building for Production

To create a production build, run:

bun run build

The built files will be in the .output/static directory.

Tech Used

  • React
  • Tailwind CSS
  • Bun (for building and running the app)
  • Web NFC API

Contributing

Feel free to contribute! Just submit a Pull Request.

License

This project is open source under the MIT License.

Thanks

  • Web NFC API for making NFC work in browsers
  • Can I Use Web NFC for a list of browsers that currently support the Web NFC API
  • Bun for helping us build and run the app