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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@openapi-typescript-infra/service

v4.21.0

Published

An opinionated framework for building configuration driven services - web, api, or ob. Uses OpenAPI, pino logging, express, confit, Typescript and vitest.

Downloads

819

Readme

@openapi-typescript-infra/service

Node CI

An opinionated framework for building high scale services - web, api, or job. Uses OpenAPI, pino, express, confit, Typescript and vitest.

This module creates an environment that makes it simpler to host a REST service (less repetition, more enterprise grade features). Wherever possible, we use off the shelf infrastructure (OpenAPI, Express@5, Terminus are examples). The goal is to allow you to enjoy a high level of type safety with a low tax in type construction in a microservice environment.

The module takes care of configuration-driven:

  • body logging
  • json parsing
  • error handling
  • hosted OpenAPI documents/handlers
  • traditional routing
  • graceful shutdown
  • health checks
  • Telemetry and instrumentation

services built with this module use Typescript with Node 18, which involves transpilation. This module takes that into account across the development and production experience. It does not currently use ESM for the most part, because between OpenTelemetry, eslint and the package ecosystem, that is currently a pipe dream, or at least something that requires incredibly precise configuration, which is not the intent.

This module has the following core functionality:

  1. Loads multilevel environment aware configuration, merging configuration information as appropriate to yield a single hierarchical configuration store. We use a modern port of confit.
  2. Engage OpenTelemetry for tracing and metrics monitoring (via Prometheus-format metrics) and wire this into JSON-based pino logging.
  3. Setup an Express@5 application with common service hosting options such as body parsing, error handling and graceful shutdown.
  4. Find and load route handlers and static content serving, if desired.
  5. Validate and load OpenAPI 3 specifications and wire up methods to path-based route handlers including support for authentication.
  6. Launch a second express app to serve health checks and metrics
  7. Setup infrastructure for interservice calls with tracing.
  8. Provide a central service runner that handles loading your service and getting to a running state in both development and production environments.

Please see the plop-based project builder for an easy way to build an example project.