Getting Started
Templates
Get started quickly with Echo using pre-built templates
The easiest way to get started with Echo is to use one of our pre-built templates.
React
The React template is a simple application that uses Vite and echo-react-sdk
. Uniquely Echo does not require
a server to make API calls because it handles Oauth directly in the browser.
Create an Echo App
Go to echo.merit.systems/new to get an app_id
.
Create a React app using Vite
Run the following commands to create a new React app using Vite.
npx echo-start@latest --template react --app-id YOUR_ECHO_APP_ID
yarn dlx echo-start@latest --template react --app-id YOUR_ECHO_APP_ID
pnpx echo-start@latest --template react --app-id YOUR_ECHO_APP_ID
bunx echo-start@latest --template react --app-id YOUR_ECHO_APP_ID
Next.js
The Next.js template is a full-stack application that uses the Next.js framework with the echo-next-sdk
.
Create an Echo app
Go to echo.merit.systems/new to get an app_id
.
Create a Next.js app
Run the following commands to create a new Next.js app.
npx echo-start@latest --template next --app-id YOUR_ECHO_APP_ID
yarn dlx echo-start@latest --template next --app-id YOUR_ECHO_APP_ID
pnpx echo-start@latest --template next --app-id YOUR_ECHO_APP_ID
bunx echo-start@latest --template next --app-id YOUR_ECHO_APP_ID