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

@typesafe-api/express

v3.0.2

Published

For context make sure to read the [main documentation](https://github.com/typesafe-api/typesafe-api/blob/main/README.md) before this file

Downloads

9

Readme

@typesafe-api/express

For context make sure to read the main documentation before this file

Controller

Let start out by creating a Controller to handle our requests...

// ../../../nx-typesafe-api-example/apps/express/src/app/hello-world.ts

import { Controller, sendError, TRequest, TResponse } from '@typesafe-api/express';
import { HelloWorldEndpointDef } from '@nx-typesafe-api-example/api-spec';

export const helloWorldController: Controller<HelloWorldEndpointDef> = async (
  req: TRequest<HelloWorldEndpointDef>,
  res: TResponse<HelloWorldEndpointDef>
) => {
  // `req.query` is typesafe so you know which keys have been set in the request
  const name = req.query.yourName;

  // As an example, let's return an error the name parameter is a number
  const isNumber = (s: string) => /^\d+$/.test(s);
  if (isNumber(name)) {
    // This error object is typesafe, including the status so you can only select from the
    // statuses given in the endpoint definition
    return sendError(res, {
      statusCode: 400,
      body: {
        msg: "Surely your name isn't a number?? 😵",
      }
    });
  }

  // No surprises, this body is typesafe too!
  res.send({
    msg: `Hello ${name} from an express backend`,
    date: new Date(),
  });
};

Middleware

Creating middleware for our app is easy too as long as it relies on our default request options. Here's a simple example...

// ../../../nx-typesafe-api-example/apps/express/src/app/authorize.ts

import { NextFunction, RequestHandler } from 'express';
import { ExampleApiEndpoint } from '@nx-typesafe-api-example/api-spec';
import { ReqOptions, ResOptions } from '@typesafe-api/core';
import { sendError, TRequest, TResponse } from '@typesafe-api/express';

// Create a type that can be used to represent any endpoint in our API
type AnyEndpointDef = ExampleApiEndpoint<ReqOptions, ResOptions>;

const handler = (
  req: TRequest<AnyEndpointDef>,
  res: TResponse<AnyEndpointDef>,
  next: NextFunction
) => {
  // Use {@code req.get(..)} to get headers in a typesafe way
  // Naive implementation of authentication
  // DONT TRY THIS AT HOME
  if (req.get('authorization') === 'my-api-key') {
    return next();
  }

  // This error object is typesafe, including the status so you can only select from the
  // statuses given in {@link DefaultErrorCodes} (defined in the app spec)
  sendError(res, {
    statusCode: 403,
    body: {
      msg: 'Unauthorized',
    },
  });
};

export const authorize = (): RequestHandler =>
  handler as unknown as RequestHandler;

Routes

Now we have a controller we just need to set up a route to it. Controllers are completely compatible with express so this stage is optional, tho advised as it guaranties your routes are correct.

Here is a very simple express app using our newly created Controller

// ../../../nx-typesafe-api-example/apps/express/src/main.ts

import express, { RequestHandler } from 'express';
import { addRoute, ExpressRoute } from '@typesafe-api/express';
import { helloWorldController } from './app/hello-world';
import {
  helloWoldRoute,
  HelloWorldEndpointDef,
} from '@nx-typesafe-api-example/api-spec';
import cors from 'cors';
import { authorize } from './app/authorize';

const app = express();

app.use(cors(), express.json());

// Define the middleware we want for the route
const middleware: RequestHandler[] = [authorize()];

// Import the route from the api-spec then add the additional fields needed for an {@link ExpressRoute}
const eHelloWorldRoute: ExpressRoute<HelloWorldEndpointDef> = {
  ...helloWoldRoute,
  middleware,
  controller: helloWorldController,
};

// Add the route to the express app
addRoute(app, eHelloWorldRoute);

// Start the server
const port = 7809;
app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`);
});