Skip to content

antler-browser/antler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Antler

Antler makes it easy for developers to build local first-auth into their web applications. User's download the Antler app (or another IRL Browser), create a profile (a DID). Whenever they scan a QR code, they share their profile data with the third-party web application (mini app) through a WebView.

Antler implements the IRL Browser Specification, a specification for secure communication between IRL Browser apps and mini apps.

Monorepo Structure

  • React Native Mobile App: /react-native/
  • Static Website: /website/
  • Cloudflare Worker: /cloud/ (for .well-known files)
antler/
├── react-native/
├── website/
└─── cloud/

Quick Start (React Native App)

1. Install dependencies

cd react-native
yarn install

2. Start the development server

yarn start

3. Run the app on iOS or Android

yarn ios
yarn android