Giter VIP home page Giter VIP logo

express-typesafe's Introduction

express-typesafe

This repository contains some personal experiments with type-level programming in Typescript, mostly making use of ts-toolbelt. The end goal, which may or may not be ever reached, is to build an abstraction layer over Express to build fully type-safe REST APIs, largely inspired by Haskell's Servant.

Ideally, we would write something like this:

interface User {
  id: number
  name: string
}

const getUser: Endpoint<["api", "users", Capture<"id">, Handler<GET, [Response<200, User>, Response<404, string>]>>
// This type evaluates to (string) => [200, User] | [404, string]
  = (id: string) => {
    if (+id === 1) {
      return [200, { id: 1, name: 'Test user' }];
    } else {
      return [404, 'User not found'];
    }
  }

and have this generate the following code for Express:

app.get('/api/users/:id', (req, res) => {
  const [code, res] = getUser(req.params.id);
  res.status(code).json(res);
});

express-typesafe's People

Contributors

rikvantoor avatar

Stargazers

BlockCat avatar

Watchers

James Cloos avatar  avatar

express-typesafe's Issues

No Readme

This repository requires a readme because it sounds interesting.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.