### Setup Web3Auth Example Environment Source: https://github.com/web3auth/web3auth-examples/blob/main/README.md Copies the example environment configuration file and installs project dependencies using npm, then starts the application. ```bash cp .env.example .env npm install npm start ``` -------------------------------- ### Install Project Dependencies (Bash) Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-solana-quick-start/README.md Installs all necessary Node.js packages and project dependencies required for the React Solana application. This command should be executed in the example's root directory. ```bash npm install ``` -------------------------------- ### Navigate to React Solana Quick Start Directory (Bash) Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-solana-quick-start/README.md Changes the current working directory to the specific React Solana quick start example within the cloned repository. This prepares the environment for subsequent installation and execution steps. ```bash cd web3auth-examples/quick-starts/react-solana-quick-start ``` -------------------------------- ### Run the TRON Example Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/tron-example/README.md Starts the development server for the Web3Auth TRON example application, typically accessible at http://localhost:5173. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/vue-solana-quick-start/README.md Installs all necessary Node.js dependencies for the Vue.js Solana quick start example using npm. This command reads the package.json file to fetch required libraries. ```bash npm install ``` -------------------------------- ### Project Setup and Execution Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/google-implicit-example/README.md Provides the necessary bash commands to clone the Web3Auth examples repository, navigate to the specific Google Implicit example, install project dependencies, configure the client ID via environment variables, and run the development server. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` ```bash cd web3auth-examples/custom-authentication/single-connection/google-implicit-example ``` ```bash npm install ``` ```bash VITE_WEB3AUTH_CLIENT_ID=YOUR_WEB3AUTH_CLIENT_ID ``` ```bash npm run dev ``` -------------------------------- ### Setup and Run Web3Auth Custom JWT Example Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/custom-jwt-example/README.md This snippet outlines the essential bash commands required to set up and run the Web3Auth custom JWT example. It covers cloning the repository, navigating to the example directory, installing Node.js dependencies, and starting the development server. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git cd web3auth-examples/custom-authentication/single-connection/custom-jwt-example npm install npm run dev ``` -------------------------------- ### Navigate to React Quick Start Directory Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-quick-start/README.md Changes the current directory to the specific React quick start example within the cloned repository. This prepares the environment for subsequent setup steps. ```bash cd web3auth-examples/quick-starts/react-quick-start ``` -------------------------------- ### Setup and Run Example Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/grouped-connection/auth0-google-implicit-grouped-example/README.md This sequence of commands guides you through cloning the Web3Auth examples repository, navigating to the specific Auth0 Google Implicit grouped connection example, installing necessary Node.js dependencies, configuring your Web3Auth Client ID in an environment file, and finally running the development server. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git cd web3auth-examples/custom-authentication/grouped-connection/auth0-google-implicit-grouped-example npm install npm run dev ``` ```env VITE_WEB3AUTH_CLIENT_ID=YOUR_WEB3AUTH_CLIENT_ID ``` -------------------------------- ### Clone Web3Auth Examples Repository (Bash) Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-solana-quick-start/README.md Clones the official Web3Auth examples repository from GitHub. This is the initial step to obtain the project files for local development. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Clone Web3Auth React Example Repository Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-quick-start/README.md Clones the official Web3Auth React examples repository from GitHub. This is the first step to get the project code onto your local machine. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Navigate and Install Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/vue-quick-start/README.md Navigates into the specific Vue quick start directory and installs all necessary project dependencies using npm. ```bash cd web3auth-examples/quick-starts/vue-quick-start npm install ``` -------------------------------- ### Clone Web3Auth Examples Repository Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/nextjs-quick-start/README.md Clones the official Web3Auth examples repository from GitHub to your local machine. This is the first step to get the example code. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Install Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/polymesh-example/README.md Installs all necessary Node.js packages required for the example application to run. ```bash npm install ``` -------------------------------- ### Install Node.js Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/tron-example/README.md Installs all necessary Node.js packages required for the TRON example application using npm. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/smart-account-example/README.md Installs all necessary Node.js packages for the project using npm. ```bash npm install ``` -------------------------------- ### Clone Web3Auth Vue Solana Example Repository Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/vue-solana-quick-start/README.md Clones the official Web3Auth Vue Solana quick start example repository from GitHub. This is the first step to get the project locally. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/multi-chain-example/README.md Installs all necessary Node.js dependencies for the multi-chain example. This command reads the package.json file to download required packages. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/auth0-implicit-example/README.md Installs the necessary Node.js packages for the example application using npm. This command fetches and installs all required libraries listed in package.json. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/xrpl-example/README.md Installs all necessary Node.js dependencies for the XRPL example project using npm. This command ensures all required packages are downloaded and installed. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/sui-example/README.md Installs the necessary Node.js packages for the example application using npm. This step ensures all required libraries are available. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/server-side-verification-example/README.md Installs all necessary Node.js dependencies for the example project using npm. This step ensures all required packages are downloaded and available. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/algorand-example/README.md Installs all necessary Node.js dependencies for the project using npm. ```bash npm install ``` -------------------------------- ### Run the Web3Auth Multi-Chain Example Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/multi-chain-example/README.md Starts the development server for the React application. Visit the specified localhost URL in your browser to view the running example. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/aptos-example/README.md Installs all necessary Node.js packages and project dependencies required for the Aptos example application to function correctly. This command reads the package.json file. ```bash npm install ``` -------------------------------- ### Run the XRPL Example Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/xrpl-example/README.md Starts the development server for the React application. After running this command, you can access the application in your browser. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/modal-example/README.md Installs all necessary Node.js packages for the example project using npm. This ensures all required libraries are available. ```bash npm install ``` -------------------------------- ### Install Project Dependencies (Bash) Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/auth0-jwt-example/README.md Installs all necessary Node.js packages required for the example application to run. This command uses npm to fetch dependencies listed in the package.json file. ```bash npm install ``` -------------------------------- ### Navigate to Next.js Example Directory Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/nextjs-quick-start/README.md Changes the current directory to the specific Next.js quick start example within the cloned repository. This ensures you are in the correct project folder. ```bash cd web3auth-examples/quick-starts/nextjs-quick-start ``` -------------------------------- ### Run the Tezos Example Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/tezos-example/README.md Starts the development server for the React Tezos example application, typically accessible via a local URL like http://localhost:5173. ```bash npm run dev ``` -------------------------------- ### Clone Web3Auth Examples Repository Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/angular-quick-start/README.md Clones the official Web3Auth examples repository from GitHub to your local machine. This is the first step to accessing the example projects. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Navigate to Aptos Example Directory Source: https://github.com/web3auth/web3auth-examples/blob/main/other/aptos-example/README.md Changes the current working directory to the specific Aptos integration example folder within the cloned repository. This prepares your environment for installation. ```bash cd web3auth-examples/other/aptos-example ``` -------------------------------- ### Run the Application Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/worldcoin-implicit-example/README.md Starts the development server for the Web3Auth Worldcoin implicit example. The application will typically be accessible at http://localhost:5173. ```bash npm run dev ``` -------------------------------- ### Clone Web3Auth Vue Example Repository Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/vue-quick-start/README.md Clones the official Web3Auth examples repository from GitHub to your local machine. ```bash git clone https://github.com/Web3Auth/web3auth-examples.git ``` -------------------------------- ### Run the Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/smart-account-example/README.md Starts the development server for the React application, typically using Vite. ```bash npm run dev ``` -------------------------------- ### Run Development Server Source: https://github.com/web3auth/web3auth-examples/blob/main/other/sign-protocol-example/README.md Starts the development server for the example application using npm. This command typically compiles the project and serves it locally, allowing you to view the running application in a browser. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-quick-start/README.md Installs all necessary Node.js packages and dependencies required for the React application to run. This command uses npm, the Node Package Manager. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/nextjs-quick-start/README.md Installs all necessary Node.js packages and dependencies required for the Next.js application to run. This command reads the package.json file. ```bash npm install ``` -------------------------------- ### Run the Development Server Source: https://github.com/web3auth/web3auth-examples/blob/main/other/bitcoin-example/README.md Starts the development server for the React application. This command compiles the code and makes the application accessible in your browser. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/grouped-connection/auth0-google-jwt-grouped-example/README.md Installs all necessary Node.js packages for the example application using npm. Ensure you have Node.js 20+ installed. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/firebase-jwt-example/README.md Installs all necessary Node.js packages for the Firebase JWT example using npm. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/polkadot-example/README.md Installs all necessary Node.js packages and dependencies required for the Polkadot example application using npm. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/tezos-example/README.md Installs all required Node.js packages and project dependencies for the Tezos example using the npm package manager. ```bash npm install ``` -------------------------------- ### Install Node.js Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/discord-implicit-example/README.md Installs all necessary Node.js packages and dependencies required for the example application to run, using npm. ```bash npm install ``` -------------------------------- ### Run the Application (Bash) Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/auth0-jwt-example/README.md Starts the development server for the example application. This command compiles the code and serves the application locally, typically on http://localhost:5173. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/angular-quick-start/README.md Installs all necessary Node.js packages required for the Angular application to run. This command reads the package.json file and downloads dependencies. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/facebook-implicit-example/README.md Installs all necessary Node.js packages required for the example application using npm, ensuring all dependencies are met. ```bash npm install ``` -------------------------------- ### Run Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/starknet-example/README.md Starts the development server for the React application, making it accessible in your browser. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/grouped-connection/firebase-google-jwt-grouped-example/README.md Installs all necessary Node.js packages required for the example application to run using npm. ```bash npm install ``` -------------------------------- ### Install Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/starknet-example/README.md Installs all necessary project dependencies using npm, required to run the application. ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/grouped-connection/modal-google-email-passwordless-grouped-example/README.md Installs all necessary Node.js packages for the example project using npm. This ensures all required libraries are available. ```bash npm install ``` -------------------------------- ### Run Development Server Source: https://github.com/web3auth/web3auth-examples/blob/main/other/aptos-example/README.md Starts the development server for the React application using Vite. This command compiles the code and makes the application accessible via a local URL, typically http://localhost:5173. ```bash npm run dev ``` -------------------------------- ### Run the Sui Example Application Source: https://github.com/web3auth/web3auth-examples/blob/main/other/sui-example/README.md Starts the development server for the React application using npm. This command compiles and serves the application locally. ```bash npm run dev ``` -------------------------------- ### Run the Application Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/facebook-implicit-example/README.md Starts the development server for the Web3Auth Facebook Implicit example using npm, typically launching the application in a browser. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/other/cosmos-example/README.md Installs all necessary Node.js packages required for the Cosmos example application to run. This command uses npm (Node Package Manager). ```bash npm install ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/worldcoin-implicit-example/README.md Installs all necessary Node.js packages for the example project using npm. This ensures all required libraries are available for the application to run. ```bash npm install ``` -------------------------------- ### Install Project Dependencies with npm Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/twitch-implicit-example/README.md Installs all necessary Node.js packages for the example project using npm. This ensures all required libraries and modules are downloaded and available. ```bash npm install ``` -------------------------------- ### Run the Development Server Source: https://github.com/web3auth/web3auth-examples/blob/main/quick-starts/react-quick-start/README.md Starts the development server for the React application, typically using Vite. Visit the provided local URL (e.g., http://localhost:5173) in your browser to view the running application. ```bash npm run dev ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/web3auth/web3auth-examples/blob/main/custom-authentication/single-connection/cognito-implicit-example/README.md Installs all necessary Node.js packages required for the Cognito implicit example to run. This command uses npm to manage project dependencies. ```bash npm install ```