Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cotype/build-client

Package Overview
Dependencies
Maintainers
5
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cotype/build-client

## Usage

  • 1.0.13
  • latest
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

Create TypeScript clients from cotype API specs

Usage

npx @cotype/build-client <spec> <dest>

Where <spec> is the URL of a cotype swagger.json spec and <dest> is the location of the .ts file to be generated.

npx @cotype/build-client https://example.com/rest/swagger.json ./lib/Api.ts
Bin

This package exposes the cotype-build-client binary when being installed as a dependency or globally.

Configuration

The tool looks for a client.config.js in the provided dest folder or any of its parents when being used via cli.

Joining

Requests to the cotype REST api can specify if they want to join data of referenced contents (rather than just returning their IDs and links).

For each endpoint we can fine-tune which data should be joined:

module.exports = () => [
  {
    name: "loadPet",
    join: [{ type: "Owner", props: ["name"] }]
  }
];

The function receives an argument of the same shape that lists everything that could possibly be joined. Hence the folling config would join every property of every referenced content:

module.exports = methods => methods;

While joining everything is usually not what we want, this approach allows us to write config files that don't need to be updated with every single model change. We could for example specify what to include on a per-type basis:

const propsToJoin = { Contact: ["name", "email"] };

module.exports = methods =>
  methods.map(({ name, join }) => ({
    name,
    join: join.map(({ type, props }) => ({
      type,
      props: propsToJoin[type]
    }))
  }));

Node API

const { generateClient } = require("@cotype/build-client");
// import { generateClient } from "@cotype/build-client";

(async () => {
  const client = await generateClient(spec, configFile);
  console.log(client);
})();

License

MIT

FAQs

Package last updated on 30 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc