Skip to main content

Squasher

Squasher is error monitoring with AI triage built in. Every error gets a root cause analysis, severity assessment, and fix suggestion — on every plan, including free.

AI Triage on Every Error

Every error is analyzed by AI. Root cause, severity, fix suggestion. Free on all plans — no per-seat AI fee.

Dual Ingestion

SDK drops AND log drains from Vercel and Railway in one dashboard. No code changes needed for log drains.

Tiny SDK

Under 5KB gzipped client bundle. Sentry ships 30KB+. Less overhead, same visibility, better Lighthouse scores.

Auto-Fix PRs

On Team plan, Squasher generates fix PRs in sandboxed environments and runs your tests before opening the PR.

Supported Platforms

PlatformIntegrationSetup
Next.js@squasher/nextjs SDKGuide
Node.js@squasher/node SDKGuide
Express / Fastify / Hono@squasher/node SDKGuide
VercelLog drain (zero-code)Guide
RailwayLog drain (zero-code)Guide

Squasher vs Sentry

SquasherSentry
AI triageFree on all plans$40/seat/month (Seer add-on)
Client SDK size< 5KB gzipped~30KB gzipped
Log drain ingestionBuilt-in (Vercel, Railway)Not supported
Auto-fix PRsTeam plan ($49/mo)Not available
Free tier5,000 errors/month5,000 errors/month
Pricing0/0 / 19 / 49/49 / 149 per month$26/month per user + add-ons

Quick Start

1

Install

npm install @squasher/nextjs
2

Initialize

instrumentation.ts
import { init } from '@squasher/nextjs';

init({
  apiKey: process.env.SQUASHER_API_KEY!,
  projectId: process.env.SQUASHER_PROJECT_ID!,
});
3

Deploy

Errors are automatically captured and triaged by AI. View them in your dashboard.

Full quickstart guide

Detailed setup for Next.js, Node.js, Vercel log drains, and Railway log drains.