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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@speajus/diblob-connect

v1.0.2

Published

Connect-based gRPC server implementation for diblob dependency injection containers

Readme

@speajus/diblob-connect

Connect-based gRPC server implementation for diblob dependency injection containers.

This package provides a Connect/Grpc server that integrates seamlessly with diblob's dependency injection system, using Connect-ES under the hood. It lets you build modern gRPC/Connect/gRPC-Web services with automatic dependency resolution.

Installation

pnpm add @speajus/diblob-connect @speajus/diblob @connectrpc/connect @connectrpc/connect-node @bufbuild/protobuf

Requirements: Node.js >= 22.0.0

Quick Start

import { createContainer } from '@speajus/diblob';
import {
  registerGrpcBlobs,
  grpcServer,
  grpcServiceRegistry,
} from '@speajus/diblob-connect';
import { YourService } from './gen/your_connect.js'; // from protoc-gen-connect-es

// Create a diblob container
const container = createContainer();

// Register gRPC/Connect server blobs
registerGrpcBlobs(container, {
  host: '0.0.0.0',
  port: 50051,
  // optional: requestPathPrefix: '/api',
});

// Register your generated service descriptor + implementation with the
// service registry. The types come directly from Connect-ES codegen.
grpcServiceRegistry.registerService(YourService, {
  async yourMethod(request) {
    // ...
    return { /* response */ };
  },
});

// Resolve the grpcServer blob to start the server.
// The registration uses lifecycle hooks to call server.start() for you.
await container.resolve(grpcServer);
console.log('gRPC server running on port 50051');

Architecture

Following diblob conventions, this package separates:

  • Interface/Blob Definitions (src/blobs.ts): Type definitions and blob declarations
  • Implementations (src/server.ts): Concrete gRPC server implementation
  • Registration (src/register.ts): Registration function that accepts a container

API Reference

registerGrpcBlobs(container, config?)

Registers all gRPC-related blobs with the provided container.

import { createContainer } from '@speajus/diblob';
import { registerGrpcBlobs } from '@speajus/diblob-connect';

const container = createContainer();
registerGrpcBlobs(container, {
  host: 'localhost',
  port: 9090
});

Configuration Options

  • host (string): Host to bind the server to (default: '0.0.0.0')
  • port (number): Port to bind the server to (default: 50051)
  • requestPathPrefix (string): Optional URL prefix for all RPCs (default: '')

Blobs

  • grpcServer: The main gRPC server instance
  • grpcServerConfig: Server configuration
  • grpcServiceRegistry: Registry for managing service implementations

Lifecycle

The registerGrpcBlobs helper registers the grpcServer blob as a Lifecycle.Singleton with lifecycle hooks:

  • initialize: 'start' – called the first time the blob is resolved
  • dispose: 'stop' – called when the blob is invalidated (for example, when it or one of its dependencies is re-registered or unregistered)

This means:

  • The server starts automatically the first time you resolve grpcServer, e.g. with await container.resolve(grpcServer).
  • The server is stopped automatically when its registration (or its dependencies) are invalidated, following diblob's cascading disposal semantics.

Examples

See the example-grpc-server for a complete working example.

License

MIT