Skip to content

Latest commit

 

History

History
121 lines (101 loc) · 4.04 KB

File metadata and controls

121 lines (101 loc) · 4.04 KB

TS Contract First logo

Contract-First Boilerplate for TypeScript – Streamline Your API Development

A boilerplate for building contract-first APIs in TypeScript with OpenAPI. Includes OpenAPI definition, compliant server setup, and npm package generation for seamless API development.

Quick Start Guide

  1. Clone the repository:

    git clone https://github.com/xutyxd/ts-openapi-contract-first-boilerplate
    cd ts-openapi-contract-first-boilerplate
    
  2. Install dependencies:

    npm install
  3. Generate OpenAPI definition:

    npm run openapi:bundle
    npm run openapi:types
    npm run openapi:docs
  4. Run the tests:

    npm run test:ts
    npm run test:units
    npm run test:functionals
  5. Run the server:

    npm run start
    npm run server:start

Project Structure

Folder Description
configurations Contains configuration files for the server and package
cucumber.js Cucumber configuration file
package Contains the package build configuration and scripts
public Contains the static files for the server
scripts Contains the scripts for the server and package
src Contains the source code for the server and package
src/openapi Contains the OpenAPI definition and specification
src/openapi/common Contains the common models and responses
src/openapi/crosscutting Contains the crosscutting models and responses
src/openapi/crosscutting/health-check Contains the health-check entity example
src/openapi/definition.json Contains the OpenAPI definition
src/package Contains the package source code
src/server Contains the server source code
src/server/app.ts Contains the server entry point
src/server/configuration Contains the server configuration
src/server/crosscutting Contains the crosscutting source code
src/server/crosscutting/common Contains the common source code
tests Contains the test files
tests/functionals Contains the functional tests
tests/units Contains the unit tests

How to extend the project

  1. Define openapi request/responses for new entity

    • Create the new folder scaffolding the entity
      mkdir src/openapi/new-entity
      mkdir src/openapi/new-entity/examples
      mkdir src/openapi/new-entity/models
      mkdir src/openapi/new-entity/paths
      mkdir src/openapi/new-entity/request
    • Add ref to paths in definition.json
    • Optionally, add ref to components in definition.json
  2. Add tests for new entity

    • Create the new folder scaffolding the entity

      mkdir tests/functionals/new-entity
      mkdir tests/functionals/new-entity/new-entity.feature
      mkdir tests/functionals/new-entity/new-entity.feature.steps.ts

      mkdir tests/units/new-entity

  3. Finally, add the new entity to the server

    • Run next command to scaffold the entity
      npm run entity:scaffold new-entity
    • src/server/app.ts Add the new entity to the container

Dependencies

Check dependencies for more documentation

License

This project is licensed under the AGPL-3.0 license - see the LICENSE file for details

Made with ☕ by XutyXD