#schema #language #schema-file #api #humans #ts

app hgen

API schema language for humans

5 releases (breaking)

0.5.0 Jun 4, 2024
0.4.0 Jun 2, 2024
0.3.0 May 30, 2024
0.2.0 May 29, 2024
0.1.0 May 7, 2024

#138 in Database interfaces

Download history 155/week @ 2024-05-06 7/week @ 2024-05-20 350/week @ 2024-05-27 166/week @ 2024-06-03 18/week @ 2024-06-10

541 downloads per month

MIT license

51KB
1.5K SLoC

hGEN

API Schema Language for Humans

[!WARNING]
This project is in early development and not ready for production use.

Usage

The hGEN CLI can be used to generate code for a given schema file.

$ cargo install hgen
$ hgen -i schema.hgen -o schema.ts

Philosophy

  • Single Source of Truth: Making sure that your API is consistent across all your services and clients is hard. With hGEN, you define and maintain your API in a single place, while fast code generation keeps overhead low.

  • Strict by Design: What is the point of a schema language if it doesn't enforce strict rules? hGEN is heavily inspired by Rust's type system, making sure that your API is as safe as possible.

  • Compile Time Reflection: Since code generated files are not meant to be edited directly, hGEN gives you that power back in form of an easy to use and strongly typed reflection metadata format, allowing you to build upon the generated code to implement you own types, validation, mapping logic and more.

  • Scalable Metadata: Other schema or reflection methods require lots of ugly annotations and lack type safety. This is why one goal of hGEN is to provide a scalable way of defining metadata directly in the schema, allowing you to define validation, serialization and more in a type-safe way without taking away from the readability of the schema.

Schema Language

hGEN defines its own schema language to describe APIs. The language is heavily inspired by languages like TypeScript, Kotlin and Dart, making it easy to learn and use. hGEN primitive types are based on Rust however, pushing for a more strict and safe API design.

extern alias Instant = String;

alias UUID = String & {
  type: uuid,
};

struct Todo {
  id: UUID,
  title: String,
  createdAt: Instant,
  checkedAt: Instant?,
}

struct CreateTodoParams {
  title: String,
}

service TodoService {
  create(params: CreateTodoParams) -> Todo,
  find() -> List<Todo>,
  check(id: UUID) -> Unit,
  uncheck(id: UUID) -> Unit,
}

Reference

Types

  • Primitives:

    • Struct
    • Enum
    • Bool
    • Int8, Int16, Int32, Int64, Int128
    • UInt8, UInt16, UInt32, UInt64, UInt128
    • Float32, Float64
    • Char
    • String
    • Nullable
    • Unit
    • (T1, T2, ..., Tn)
    • List<T>
    • Map<K, V>
    • Union
  • Concepts:

    • Type Alias
    • Custom Type
    • Result Type

Dependencies

~1.8–10MB
~86K SLoC