This package has been deprecated

Author message:

This package is deprecated and will no longer be updated as of v10, please use @ama-sdk/schematics

@ama-sdk/generator-sdk

9.6.12 • Public • Published

SDK Generator

This package provides a Yeoman generator to create an SDK based on an API swagger spec.

Setup

Yeoman is required to use this generator:

# Install Yeoman, @ama-sdk/core and the SDK generator
yarn add --dev yo @ama-sdk/generator-sdk @ama-sdk/core

How to use?

Typescript SDK

The typescript generator provides 2 generators:

  • shell: To generate the "shell" of an SDK package
  • core: To (re)generate the SDK based on a specified Swagger spec
  • create: To create a new SDK from scratch (i.e. chain shell and core)

For generating the shell, you can run:

yarn yo ./node_modules/@ama-sdk/generator-sdk/src/generators/shell

If using Yarn2+, you can use the following scripts in package.json:

    "resolve": "node -e 'process.stdout.write(require.resolve(process.argv[1]));'",
    "generate": "yo $(yarn resolve @ama-sdk/generator-sdk/src/generators/core) --swaggerSpecPath ./swagger-spec.yaml --force",
    "upgrade:repository": "yo $(yarn resolve @ama-sdk/generator-sdk/src/generators/shell)",

Use generate to (re)generate your SDK based on the content of ./swagger-spec.yaml (make sure you have this file at the root of your project) and upgrade:repository to regenerate the structure of your project.

Dart SDK

Generate a Dart SDK:

Make sure to have a ./swagger-spec.yaml file at the root of your project and run:

yarn yo ./node_modules/@ama-sdk/generator-sdk/src/generators/dart-core --swaggerSpecPath ./swagger-spec.yaml --swaggerConfigPath node_modules/@ama-sdk/generator-sdk/generators/dart-core/templates/swagger-codegen-dart/config/swagger-codegen-config.json --force

For more details please check: Dart generator doc

Java Resteasy client SDK

Generate a Java Resteasy SDK:

Make sure to have a ./swagger-spec.yaml file at the root of your project and run:

yarn yo ./node_modules/@ama-sdk/generator-sdk/src/generators/java-client-core --swaggerSpecPath ./swagger-spec.yaml --swaggerConfigPath node_modules/@ama-sdk/generator-sdk/generators/java-client-core/templates/swagger-codegen-java-client/config/swagger-codegen-config.json --force

For more details please check: Java resteasy client generator doc

Readme

Keywords

Package Sidebar

Install

npm i @ama-sdk/generator-sdk

Weekly Downloads

9,175

Version

9.6.12

License

BSD-3-Clause

Unpacked Size

15.3 MB

Total Files

174

Last publish

Collaborators

  • mrednic-1a
  • nicohoffmann
  • vscaiceanu-1a
  • jbourgeois-1a
  • kpanot