npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@effect/tsgo

v0.38.0

Published

Effect Language Service for TypeScript-Go — Effect-specific diagnostics and hover features.

Readme

Effect Language Service (TypeScript-Go)

A wrapper around TypeScript-Go that builds the Effect Language Service, providing Effect-TS diagnostics and quick fixes. This project targets Effect V4 (codename: "smol") primarily and also Effect V3.

Installation

The setup of the TSGO version of the LSP can be performed via the command line interface:

# Interactive and guided setup for human friends
npx @effect/tsgo setup
# Non-interactive, for LLM friends
npx @effect/tsgo setup --help

This will guide you through the installation process, which includes:

  1. Adding the @effect/tsgo dependency to your project.
  2. Configuring your tsconfig.json to use the Effect Language Service plugin.
  3. Adjusting plugin options to your preference.
  4. Hinting at any additional editor configuration needed to ensure the LSP is active.

[!NOTE] At the moment, you still need a native TypeScript install alongside @effect/tsgo: typescript >= 7 (e.g. typescript@latest or typescript@next) or an alias such as @typescript/native. effect-tsgo patch tries typescript, then @typescript/native, and accepts --typescript-package <name> to try a custom package name first.

LSP-based linter

The Effect LSP doubles as a tool to perform type-aware linting of Effect code, and ships as well a way to emit additional Oxlint Type Aware rules.

Linting can occur either during the tsc typecheck phase (with the benefit of running typechecking only once and caching the output), or via a dedicated npx @effect/tsgo diagnostics --project tsconfig.json command (with typechecking occurring again), or via the Oxlint Patch.

See the Oxlint Setup guide for instructions on how to install and configure Oxlint with the Effect LSP.

When running in tsc mode, the Effect diagnostics are emitted as standard TypeScript diagnostics, and can be configured to affect the tsc exit code through the options ignoreEffectSuggestionsInTscExitCode, ignoreEffectWarningsInTscExitCode, and ignoreEffectErrorsInTscExitCode.

When running in dedicated diagnostics mode, the Effect diagnostics can be emitted in structured formats, which can be further processed by other tools.

Supported Package Versions

The following target package versions are supported by @effect/[email protected]:

| Component | Supported versions | |---|---| | TypeScript | 7.0.2, 7.1.0-dev.20260826.1 | | Oxlint | 1.79.0, 1.80.0 | | oxlint-tsgolint | 7.0.2001 |

Diagnostic Status

Some diagnostics are off by default or have a default severity of suggestion, but you can always enable them or change their default severity in the plugin options.

Refactor Status

| Refactor | V3 | V4 | Notes | |----------|----|----|-------| | asyncAwaitToFn | ✅ | ✅ | Convert async/await to Effect.fn | | asyncAwaitToFnTryPromise | ✅ | ✅ | Convert async/await to Effect.fn with Error ADT + tryPromise | | asyncAwaitToGen | ✅ | ✅ | Convert async/await to Effect.gen | | asyncAwaitToGenTryPromise | ✅ | ✅ | Convert async/await to Effect.gen with Error ADT + tryPromise | | debugPerformance | ❌ | ❌ | Insert performance timing debug comments | | effectGenToFn | ✅ | ✅ | Convert Effect.gen to Effect.fn | | functionToArrow | ✅ | ✅ | Convert function declaration to arrow function | | layerMagic | ✅ | ✅ | Auto-compose layers with correct merge/provide | | makeSchemaOpaque | ✅ | ✅ | Convert Schema to opaque type aliases | | makeSchemaOpaqueWithNs | ✅ | ✅ | Convert Schema to opaque types with namespace | | pipeableToDatafirst | ✅ | ✅ | Convert pipeable calls to data-first style | | removeUnnecessaryEffectGen | ✅ | ✅ | Remove redundant Effect.gen wrapper | | structuralTypeToSchema | ✅ | ✅ | Generate recursive Schema from type alias | | toggleLazyConst | ✅ | ✅ | Toggle lazy/eager const declarations | | togglePipeStyle | ✅ | ✅ | Toggle pipe(x, f) vs x.pipe(f) | | toggleReturnTypeAnnotation | ✅ | ✅ | Add/remove return type annotation | | toggleTypeAnnotation | ✅ | ✅ | Add/remove variable type annotation | | typeToEffectSchema | ✅ | ✅ | Generate Effect.Schema from type alias | | typeToEffectSchemaClass | ✅ | ✅ | Generate Schema.Class from type alias | | wrapWithEffectGen | ✅ | ✅ | Wrap expression in Effect.gen | | wrapWithPipe | ❌ | ✅ | Wrap selection in pipe(...) | | writeTagClassAccessors | ✅ | ➖ | Generate static accessors for Effect.Service/Tag classes |

Completion Status

| Completion | V3 | V4 | Notes | |------------|----|----|-------| | contextSelfInClasses | ✅ | ➖ | Context.Tag self-type snippets in extends clauses (V3-only) | | effectDataClasses | ✅ | ✅ | Data class constructor snippets in extends clauses | | effectSchemaSelfInClasses | ✅ | ✅ | Schema/Model class constructor snippets in extends clauses | | effectSelfInClasses | ✅ | ➖ | Effect.Service/Effect.Tag self-type snippets in extends clauses (V3-only) | | genFunctionStar | ✅ | ✅ | gen(function*(){}) snippet when dot-accessing .gen on objects with callable gen property | | effectCodegensComment | ✅ | ✅ | @effect-codegens directive snippet in comments with codegen name choices | | effectDiagnosticsComment | ✅ | ✅ | @effect-diagnostics / @effect-diagnostics-next-line directive snippets in comments | | rpcMakeClasses | ✅ | ➖ | Rpc.make constructor snippet in extends clauses (V3-only) | | schemaBrand | ✅ | ➖ | brand("varName") snippet when dot-accessing Schema in variable declarations (V3-only) | | serviceMapSelfInClasses | ✅ | ✅ | Service map self-type snippets in extends clauses |

Best Practices

Relationship to Official TypeScript-Go (tsgo)

Effect-tsgo is a superset of the official TypeScript-Go — it embeds a pinned version of tsgo with a small patch set on top and adds the Effect language service. This means effect-tsgo provides all standard TypeScript-Go functionality plus Effect-specific diagnostics, quick fixes, and refactors.

Use effect-tsgo instead of tsgo, not alongside it. Running both in parallel will produce duplicate diagnostics and degrade editor performance. Configure your editor to use effect-tsgo as your sole TypeScript language server.

Version Pinning

Each release of effect-tsgo is built against the versioned components recorded in _packages/tsgo/upstream.json. The Nix flake consumes the TypeScript next tag directly. When upstream tsgo releases new features or fixes, effect-tsgo will adopt them in a subsequent release after validating compatibility with the Effect diagnostics layer.

When to Upgrade

  • Upgrade effect-tsgo when a new release includes upstream tsgo fixes you need or new Effect diagnostics you want.
  • There is no need to track upstream tsgo releases separately — effect-tsgo is the single binary to manage.

Plugin Options

{
  "compilerOptions": {
    "plugins": [
      {
        "name": "@effect/language-service",
        // Controls Effect refactors. (default: true)
        "refactors": true,
        // Controls Effect diagnostics. (default: true)
        "diagnostics": true,
        // When false, suggestion-level Effect diagnostics are omitted from tsc CLI output. (default: true)
        "includeSuggestionsInTsc": true,
        // Controls Effect quickinfo. (default: true)
        "quickinfo": true,
        // Controls Effect completions. (default: true)
        "completions": true,
        // Enables additional debug-only Effect language service output. (default: false)
        "debug": false,
        // Controls Effect goto references support. (default: true)
        "goto": true,
        // Controls Effect rename helpers. (default: true)
        "renames": true,
        // When true, suggestion diagnostics do not affect the tsc exit code. (default: true)
        "ignoreEffectSuggestionsInTscExitCode": true,
        // When true, warning diagnostics do not affect the tsc exit code. (default: false)
        "ignoreEffectWarningsInTscExitCode": false,
        // When true, error diagnostics do not affect the tsc exit code. (default: false)
        "ignoreEffectErrorsInTscExitCode": false,
        // When true, disabled diagnostics are still processed so directives can re-enable them. (default: false)
        "skipDisabledOptimization": false,
        // Mermaid rendering service for layer graph links. Accepts mermaid.live, mermaid.com, or a custom URL. (default: "mermaid.live")
        "mermaidProvider": "mermaid.live",
        // When true, suppresses external Mermaid links in hover output. (default: false)
        "noExternal": false,
        // How many levels deep the layer graph extraction follows symbol references. (default: 0)
        "layerGraphFollowDepth": 0,
        // When true, suppresses redundant return-type inlay hints on supported Effect generator functions. (default: false)
        "inlays": false,
        // Package names that should prefer namespace imports. (default: [])
        "namespaceImportPackages": [],
        // Package names that should prefer barrel named imports. (default: [])
        "barrelImportPackages": [],
        // Package-level import aliases keyed by package name. (default: {})
        "importAliases": {},
        // Controls whether named reexports are followed at package top-level. (default: "ignore")
        "topLevelNamedReexports": "ignore",
        // Configures key pattern formulas for the deterministicKeys rule. (default: [{"target":"service","pattern":"default","skipLeadingPath":["src/"]},{"target":"custom","pattern":"default","skipLeadingPath":["src/"]}])
        "keyPatterns": [
          {
            "target": "service",
            "pattern": "default",
            "skipLeadingPath": [
              "src/"
            ]
          },
          {
            "target": "custom",
            "pattern": "default",
            "skipLeadingPath": [
              "src/"
            ]
          }
        ],
        // Enables matching constructors with @effect-identifier annotations. (default: false)
        "extendedKeyDetection": false,
        // Minimum number of contiguous pipeable transformations to trigger missedPipeableOpportunity. (default: 2)
        "pipeableMinArgCount": 2,
        // Package names allowed to have multiple versions without triggering duplicatePackage. (default: [])
        "allowedDuplicatedPackages": [],
        // Controls which effectFnOpportunity quickfix variants are offered. (default: ["span"])
        "effectFn": [
          "span"
        ],
        // Maps rule names to severity levels. Use {} to enable diagnostics with rule defaults. (default: {})
        "diagnosticSeverity": {},
        // Ordered per-file diagnostic option overrides. (default: [{"include":["src/**/*.ts"],"options":{"diagnosticSeverity":{"floatingEffect":"error"}}}])
        "overrides": [
          {
            "include": [
              "src/**/*.ts"
            ],
            "options": {
              "diagnosticSeverity": {
                "floatingEffect": "error"
              }
            }
          }
        ]
      }
    ]
  }
}