npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

heyapi-client-generator

v1.3.4

Published

A customizable HeyAPI client generator with prefix support

Downloads

1,039

Readme

HeyAPI Client Generator

A utility to generate TypeScript clients for APIs using HeyAPI, enhanced with prefix configuration and React Query integration.


Features

  • 🚀 Manage multiple services effortlessly.
  • 🌟 Save time with automated prefix handling.
  • 🔧 Enjoy a more streamlined API development experience.

Dependencies

pnpm add -D @hey-api/openapi-ts

Installation

pnpm add -D heyapi-client-generator

Usage

To use this package, follow these steps:

  1. Create a generate-clients.ts File In your project's root directory, create a generate-clients.ts file and add the following code:
import { generateClients, ServiceConfig } from "heyapi-client-generator";

const services: ServiceConfig[] = [
    {
        client: "@hey-api/client-axios/example",
        prefix: "/api/v1/pre-example",
        input: "./openapi.json",
        output: "src/client/pre-example",
        plugins: ["example-plugin"],
    },
    {
        client: "@hey-api/client-axios/example2",
        prefix: "/api/v1/pre-example2",
        input: "./openapi.json",
        output: "src/client/pre-example2",
        plugins: ["example-plugin"],
    },
];

generateClients(services)
    .then(() => console.log("Clients successfully generated!"))
    .catch((err: any) => console.error("Error generating clients:", err));
  1. Add a Script to Your package.json Update your package.json file to include the following script:

Make sure tsx is installed in your project:

pnpm add tsx typescript -D
"scripts": {
  "generate-client": "tsx generate-clients.ts"
}
  1. Run the Script Generate the clients by running the following command in your terminal:
pnpm run generate-client

How It Works

Client Generation: The generate-clients script reads the ServiceConfig array, processes each service configuration, and generates TypeScript clients using the HeyAPI OpenAPI client generator.

Custom Prefix Handling: After generating the client, the script modifies the client file to prepend the specified prefix to all API endpoint URLs.

React Query Integration: The generated clients include React Query hooks for managing API state seamlessly in your application.

ServiceConfig Interface

interface ServiceConfig {
  client: string;
  prefix: string;
  input: string;
  output: string;
  plugins?: string[];
}

| Property | Type | Description | | :------- | :------- | :----------------------------------------------------- | | prefix | string | The prefix to prepend to the API URLs | | input | string | Path to the OpenAPI specification file | | output | string | Directory where the generated client files will reside | | plugins | string[] | Plugins to use for the client generation | | client | string | The client to use for the generation |

GitHub Repository For more details, check out the GitHub repository: heyapi-client-generator

Contributing We welcome contributions! Follow these steps to contribute:

  • Fork the repository.
  • Clone it to your machine:
git clone https://github.com/aknslc/heyapi-client-generator.git

Create a new branch for your changes.

  • Make your changes and test them.
  • Submit a pull request.