stack/packages/template
mantrakp04 1ab6bf41aa Add OTLP trace ingest endpoint for analytics spans
- Introduced a new endpoint for ingesting OpenTelemetry traces in OTLP/HTTP JSON format, allowing backend services to send trace data as analytics spans.
- Implemented validation and sanitization for incoming trace data, ensuring only valid spans are processed.
- Enhanced error handling for invalid payloads and added support for server or admin authentication.
- Updated analytics validation to accept additional formats for OpenTelemetry IDs, improving flexibility in trace identification.

These changes expand the analytics capabilities and improve the integration with OpenTelemetry for better observability.
2026-03-26 17:37:54 -07:00
..
scripts Widget playground mobile mode 2025-07-14 20:04:43 -07:00
src Add OTLP trace ingest endpoint for analytics spans 2026-03-26 17:37:54 -07:00
.env Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
.eslintrc.cjs tsup for stack-shared (#647) 2025-04-28 21:26:52 -07:00
.gitignore Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
components.json Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
LICENSE Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
next-env.d.ts Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
package-template.json Enhance analytics and spans functionality in backend 2026-03-25 15:44:30 -07:00
package.json Enhance analytics and spans functionality in backend 2026-03-25 15:44:30 -07:00
postcss.config.js Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
quetzal.config.json Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
README.md Enhance analytics and spans functionality in backend 2026-03-25 15:44:30 -07:00
tailwind.config.js Vanilla JS client library (#408) 2025-02-08 02:31:03 +01:00
tsconfig.json In-source unit tests (#429) 2025-02-14 11:47:52 -08:00
tsdown.config.ts Enhance analytics and spans functionality in backend 2026-03-25 15:44:30 -07:00
vitest.config.ts In-source unit tests (#429) 2025-02-14 11:47:52 -08:00

Stack Auth: Open-source Clerk/Auth0 alternative

📘 Docs | ☁️ Hosted Version | Demo | 🎮 Discord | GitHub

Stack Auth is a managed user authentication solution. It is developer-friendly and fully open-source (licensed under MIT and AGPL).

Stack Auth gets you started in just five minutes, after which you'll be ready to use all of its features as you grow your project. Our managed service is completely optional and you can export your user data and self-host, for free, at any time.

We support Next.js, React Router, TanStack Start, Nuxt, SvelteKit, NestJS, Express, Hono, Cloudflare Workers, and generic JavaScript runtimes through our JavaScript SDK packages, along with any backend that can use our REST API. Check out our setup guide to get started.

📦 Installation & Setup

  1. Run Stack Auth's installation wizard with the following command:
    npx @stackframe/stack-cli@latest init
    
  2. Then, create an account on the Stack Auth dashboard, create a new project with an API key, and copy its environment variables into the .env.local file of your Next.js project:
    NEXT_PUBLIC_STACK_PROJECT_ID=<your-project-id>
    NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY=<your-publishable-client-key>
    STACK_SECRET_SERVER_KEY=<your-secret-server-key>
    
  3. That's it! You can run your app with npm run dev and go to http://localhost:3000/handler/signup to see the sign-up page. You can also check out the account settings page at http://localhost:3000/handler/account-settings.

Check out the documentation for a more detailed guide.