-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add @sentry/tanstackstart-solid
#15931
Closed
+42,044
−29,918
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
parserOptions: { | ||
jsx: true, | ||
}, | ||
extends: ['../../.eslintrc.js'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2025 Functional Software, Inc. dba Sentry | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<p align="center"> | ||
<a href="https://sentry.io/?utm_source=github&utm_medium=logo" target="_blank"> | ||
<img src="https://sentry-brand.storage.googleapis.com/sentry-wordmark-dark-280x84.png" alt="Sentry" width="280" height="84"> | ||
</a> | ||
</p> | ||
|
||
# Official Sentry SDK for TanStack Start React (Alpha) | ||
|
||
[](https://www.npmjs.com/package/@sentry/tanstackstart-react) | ||
[](https://www.npmjs.com/package/@sentry/tanstackstart-react) | ||
[](https://www.npmjs.com/package/@sentry/tanstackstart-react) | ||
|
||
> NOTICE: This package is in alpha state and may be subject to breaking changes. | ||
|
||
## Getting Started | ||
|
||
This SDK does not have docs yet. Stay tuned. | ||
|
||
## Compatibility | ||
|
||
The minimum supported version of TanStack Start is `1.111.12`. | ||
|
||
## Custom Usage | ||
|
||
To set context information or to send manual events, you can use `@sentry/tanstackstart-react` as follows: | ||
|
||
```ts | ||
import * as Sentry from '@sentry/tanstackstart-react'; | ||
|
||
// Set user information, as well as tags and further extras | ||
Sentry.setTag('user_mode', 'admin'); | ||
Sentry.setUser({ id: '4711' }); | ||
Sentry.setContext('application_area', { location: 'checkout' }); | ||
|
||
// Add a breadcrumb for future events | ||
Sentry.addBreadcrumb({ | ||
message: '"Add to cart" clicked', | ||
// ... | ||
}); | ||
|
||
// Capture exceptions or messages | ||
Sentry.captureException(new Error('Oh no.')); | ||
Sentry.captureMessage('Hello, world!'); | ||
``` | ||
|
||
## Links | ||
|
||
<!-- - [Official SDK Docs](https://docs.sentry.io/platforms/javascript/guides/tanstackstart-react/) --> | ||
|
||
- [Sentry.io](https://sentry.io/?utm_source=github&utm_medium=npm_tanstackstartreact) | ||
- [Sentry Discord Server](https://discord.gg/Ww9hbqr) | ||
- [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
{ | ||
"name": "@sentry/tanstackstart-solid", | ||
"version": "9.10.1", | ||
"description": "Official Sentry SDK for TanStack Start Solid", | ||
"repository": "git://github.com/getsentry/sentry-javascript.git", | ||
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/tanstackstart-solid", | ||
"author": "Sentry", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"main": "build/cjs/index.server.js", | ||
"module": "build/esm/index.server.js", | ||
"types": "build/types/index.types.d.ts", | ||
"files": [ | ||
"/build" | ||
], | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"types": "./build/types/index.types.d.ts", | ||
"browser": { | ||
"import": "./build/esm/index.client.js", | ||
"require": "./build/cjs/index.client.js" | ||
}, | ||
"node": { | ||
"import": "./build/esm/index.server.js", | ||
"require": "./build/cjs/index.server.js" | ||
} | ||
}, | ||
"./import": { | ||
"import": { | ||
"default": "./build/import-hook.mjs" | ||
} | ||
}, | ||
"./loader": { | ||
"import": { | ||
"default": "./build/loader-hook.mjs" | ||
} | ||
} | ||
}, | ||
"typesVersions": { | ||
"<5.0": { | ||
"build/npm/types/index.d.ts": [ | ||
"build/npm/types-ts3.8/index.d.ts" | ||
] | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"dependencies": { | ||
"@opentelemetry/api": "^1.9.0", | ||
"@opentelemetry/semantic-conventions": "^1.30.0", | ||
"@sentry-internal/browser-utils": "9.10.1", | ||
"@sentry/core": "9.10.1", | ||
"@sentry/node": "9.10.1", | ||
"@sentry/opentelemetry": "9.10.1", | ||
"@sentry/solid": "9.10.1" | ||
}, | ||
"scripts": { | ||
"build": "run-p build:transpile build:types", | ||
"build:dev": "yarn build", | ||
"build:transpile": "rollup -c rollup.npm.config.mjs", | ||
"build:types": "run-s build:types:core build:types:downlevel", | ||
"build:types:core": "tsc -p tsconfig.types.json", | ||
"build:types:downlevel": "yarn downlevel-dts build/types build/types-ts3.8 --to ts3.8", | ||
"build:watch": "run-p build:transpile:watch build:types:watch", | ||
"build:dev:watch": "yarn build:watch", | ||
"build:transpile:watch": "nodemon --ext ts --watch src scripts/buildRollup.ts", | ||
"build:types:watch": "tsc -p tsconfig.types.json --watch", | ||
"build:tarball": "npm pack", | ||
"circularDepCheck": "madge --circular src/index.client.ts && madge --circular src/index.server.ts && madge --circular src/index.types.ts", | ||
"clean": "rimraf build coverage sentry-tanstackstart-solid-*.tgz", | ||
"fix": "eslint . --format stylish --fix", | ||
"lint": "eslint . --format stylish", | ||
"test": "yarn test:unit", | ||
"test:unit": "vitest run", | ||
"test:watch": "vitest --watch", | ||
"yalc:publish": "yalc publish --push --sig" | ||
}, | ||
"volta": { | ||
"extends": "../../package.json" | ||
}, | ||
"sideEffects": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { makeBaseNPMConfig, makeNPMConfigVariants, makeOtelLoaders } from '@sentry-internal/rollup-utils'; | ||
|
||
export default [ | ||
...makeNPMConfigVariants( | ||
makeBaseNPMConfig({ | ||
entrypoints: ['src/index.server.ts', 'src/index.client.ts', 'src/client/index.ts', 'src/server/index.ts'], | ||
}), | ||
), | ||
...makeOtelLoaders('./build', 'sentry-node'), | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from '@sentry/solid'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* A middleware handler that can be passed to TanStack Start's `createMiddleware().server(...)` method as [global middleware](https://tanstack.com/start/latest/docs/framework/react/middleware#global-middleware) for instrumenting server functions. | ||
*/ | ||
export function sentryGlobalServerMiddlewareHandler() { | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
return function <T>(server: { next: (...args: any[]) => T }): T { | ||
return server.next(); | ||
}; | ||
} | ||
|
||
/** | ||
* Wraps a TanStack Start stream handler with Sentry instrumentation that can be passed to `createStartHandler(...)`. | ||
*/ | ||
export function wrapStreamHandlerWithSentry<H>(handler: H): H { | ||
return handler; | ||
} | ||
|
||
/** | ||
* Wraps the create root route function with Sentry for server-client tracing with SSR. | ||
*/ | ||
export function wrapCreateRootRouteWithSentry<F>(createRootRoute: F): F { | ||
return createRootRoute; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Wraps a TanStack Start config. | ||
*/ | ||
export function wrapVinxiConfigWithSentry<C>( | ||
config: C, | ||
// TODO: Expand this type in the future. Right now it is just so that TS doesn't complain for our users when they copy paste from the docs. | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
sentryBuildOptions: { | ||
org?: string; | ||
project?: string; | ||
silent?: boolean; | ||
authToken?: boolean; | ||
} = {}, | ||
): C { | ||
return config; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './client'; | ||
export * from './common'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './config'; | ||
export * from './server'; | ||
export * from './common'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// We export everything from both the client part of the SDK and from the server part. Some of the exports collide, | ||
// which is not allowed, unless we redefine the colliding exports in this file - which we do below. | ||
export * from './config'; | ||
export * from './client'; | ||
export * from './server'; | ||
export * from './common'; | ||
|
||
import type { Client, Integration, Options, StackParser } from '@sentry/core'; | ||
|
||
import type * as clientSdk from './client'; | ||
import type * as serverSdk from './server'; | ||
|
||
/** Initializes Sentry TanStack Start SDK */ | ||
export declare function init(options: Options | clientSdk.BrowserOptions | serverSdk.NodeOptions): Client | undefined; | ||
|
||
export declare const linkedErrorsIntegration: typeof clientSdk.linkedErrorsIntegration; | ||
export declare const contextLinesIntegration: typeof clientSdk.contextLinesIntegration; | ||
|
||
export declare const getDefaultIntegrations: (options: Options) => Integration[]; | ||
export declare const defaultStackParser: StackParser; | ||
|
||
export declare function getSentryRelease(fallback?: string): string | undefined; | ||
|
||
export declare const ErrorBoundary: typeof clientSdk.ErrorBoundary; | ||
export declare const createReduxEnhancer: typeof clientSdk.createReduxEnhancer; | ||
export declare const showReportDialog: typeof clientSdk.showReportDialog; | ||
export declare const withErrorBoundary: typeof clientSdk.withErrorBoundary; | ||
|
||
export declare const logger: typeof clientSdk.logger | typeof serverSdk.logger; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
export * from '@sentry/node'; | ||
|
||
import type { Component, JSX } from 'solid-js'; | ||
|
||
/** | ||
* A passthrough error boundary for the server that doesn't depend on any react. Error boundaries don't catch SSR errors | ||
* so they should simply be a passthrough. | ||
*/ | ||
export const ErrorBoundary = (props: { children?: JSX.Element | (() => JSX.Element) }): JSX.Element => { | ||
if (!props.children) { | ||
return null; | ||
} | ||
|
||
if (typeof props.children === 'function') { | ||
return props.children(); | ||
} | ||
|
||
return props.children; | ||
}; | ||
|
||
/** | ||
* A passthrough store enhancer for the server that doesn't depend on anything from the `@sentry/react` package. | ||
*/ | ||
export function createStoreEnhancer() { | ||
return (createStore: unknown) => createStore; | ||
} | ||
|
||
/** | ||
* A passthrough error boundary wrapper for the server that doesn't depend on any react. Error boundaries don't catch | ||
* SSR errors so they should simply be a passthrough. | ||
*/ | ||
export function withErrorBoundary<P extends Record<string, unknown>>(WrappedComponent: Component<P>): Component<P> { | ||
return WrappedComponent; | ||
} | ||
|
||
/** | ||
* Just a passthrough since we're on the server and showing the report dialog on the server doesn't make any sense. | ||
*/ | ||
export function showReportDialog(): void { | ||
return; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { describe, it, expect } from 'vitest'; | ||
|
||
describe('Basic test suite', () => { | ||
it('should pass', () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "../tsconfig.test.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
"lib": ["es2018", "es2020.string"], | ||
"module": "Node16" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"include": ["test/**/*", "vite.config.ts"], | ||
"compilerOptions": { | ||
"types": ["node"], | ||
"lib": ["DOM", "ESNext"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"declaration": true, | ||
"declarationMap": true, | ||
"emitDeclarationOnly": true, | ||
"outDir": "build/types" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repo uses yarn v1, you'll need to re-run with that to get the tests going
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue I face is that I can't build the /core package. I get with yarn 1.x + node 20 (as specified in package.json):