Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Fix Solid, SolidStart, and NestJS README snippet errors

Open
#24,548 1 comment 0 reactions 1 assignee View on GitHub

@nicohrubec is already working on this.

Since Sep 21, 2026.

Assessment

This issue has not been assessed yet.

Description

Task

Fix copy/paste errors in three package README examples so they use the correct imports.

Solid and SolidStart

In packages/solid/README.md and packages/solidstart/README.md, the examples import withSentryRouterRouting from the dedicated /solidrouter entry point but call it on the main Sentry namespace, which does not export it. Use the function already imported:

- const SentryRouter = Sentry.withSentryRouterRouting(Router);
+ const SentryRouter = withSentryRouterRouting(Router);
NestJS

The cron example in packages/nestjs/README.md imports MonitorConfig twice, causing a duplicate identifier. Keep the type-only import from @sentry/core:

- import { SentryCron, MonitorConfig } from '@sentry/nestjs';
+ import { SentryCron } from '@sentry/nestjs';
  import type { MonitorConfig } from '@sentry/core';
Dominant language
TypeScript
Stars
8.7k
Forks
1.9k
Avg merge
1d 18h
Merged PRs (30d)
562

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from getsentry/sentry-javascript

All issues in getsentry/sentry-javascript

Similar issues

More TypeScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.