nestia

NestJS Helper Libraries + TypeScript OpenAPI generator

MIT License

Downloads
179.7K
Stars
1.8K
Committers
37

Bot releases are hidden (Show)

nestia - v3.17.0

Published by samchon 19 days ago

What's Changed

New Contributors

Full Changelog: https://github.com/samchon/nestia/compare/v3.16.0...v3.17.0

nestia - v3.16.0

Published by samchon 21 days ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.14.1...v3.16.0

nestia - v3.14.1

Published by samchon 22 days ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.14.0...v3.14.1

nestia - v3.14.0

Published by samchon 30 days ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.13.0...v3.14.0

nestia - v3.13.0

Published by samchon about 1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/samchon/nestia/compare/v3.12.2...v3.13.0

nestia - v3.12.2

Published by samchon about 1 month ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.12.1...v3.12.2

nestia - v3.12.1

Published by samchon about 1 month ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.12.0...v3.12.1

nestia - v3.12.0 Latest Release

Published by samchon about 2 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.11.3...v3.12.0

nestia - v3.12.0

Published by samchon about 2 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.11.3...v3.12.0

nestia - v3.11.3

Published by samchon about 2 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.11.2...v3.11.3

nestia - v3.11.2

Published by samchon about 2 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.11.1...v3.11.2

nestia - v3.11.1

Published by samchon 2 months ago

Boosted up @nestia/sdk performance by entirely re-making, building time of Swagger Document and SDK library has been reduced.

Also, @nestia/sdk has started supporting multiple SDK libraries and Swagger Documents generations.

You can configure multiple INestiaConfig typed instances in the nestia.config.ts file.

import { INestiaConfig } from "@nestia/sdk";
import { NestFactory } from "@nestjs/core";
 
import { AppModule } from "./src/modules/AppModule";
import { BbsModule } from "./src/modules/BbsModule";
import { CommonModule } from "./src/modules/CommonModule";
 
export const NESTIA_CONFIGURATIONS: INestiaConfig[] = [
  {
    input: () => NestFactory.create(AppModule),
    openai: {
      output: "openai.json",
      keyword: true,
    },
  },
  {
    input: () => NestFactory.create(BbsModule),
    openai: {
      output: "bbs.openai.json",
      keyword: true,
    },
  },
  {
    input: () => NestFactory.create(CommonModule),
    openai: {
      output: "common.openai.json",
      keyword: false,
    },
  },
];
export default NESTIA_CONFIGURATIONS;

https://nestia.io/docs/sdk/swagger/#multiple-files-generation

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.10.0...v3.11.1

nestia - v3.10.0

Published by samchon 2 months ago

typia enhanced performance, and nestia follows the update.

As the ObjectHierarchical like structures are commonly seen in the real world services, especially in the backend applications, I strongly recommend installing this update.

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.9.0...v3.10.0

nestia - v3.9.0

Published by samchon 3 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.8.1...v3.9.0

nestia - v3.8.1

Published by samchon 3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/samchon/nestia/compare/v3.7.2...v3.8.1

nestia - v3.7.2

Published by samchon 3 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.7.1...v3.7.2

nestia - v3.7.1

Published by samchon 3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/samchon/nestia/compare/v3.7.0...v3.7.1

nestia - v3.7.0

Published by samchon 3 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.6.1...v3.7.0

nestia - v3.6.1

Published by samchon 3 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.5.0...v3.6.1

nestia - v3.5.0

Published by samchon 3 months ago

What's Changed

Full Changelog: https://github.com/samchon/nestia/compare/v3.4.3...v3.5.0