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

@kakasoo/github-sdk

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kakasoo/github-sdk

SDK library generated by Nestia

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

github-SDK

This project was created using samchon's nestia. His project has a function to create SDKs using swagger, which was created using that function. The swagger that became the basis of SDK generation is the swagger provided by github. So, it is probably the most accurate SDK for now.

/**
 * List repositories for a user.
 * Lists public repositories for the specified user.
 *
 * @tag repos
 * @path users/:username/repos
 * @nestia Generated by Nestia - https://github.com/samchon/nestia
 */
export declare function getByUsername(connection: IConnection<getByUsername.Headers>, username: string, query: getByUsername.Query): Promise<getByUsername.Output>;
export declare namespace getByUsername {
    type Headers = IApiUsersRepos.GetHeader;
    type Query = IApiUsersRepos.GetQuery;
    type Output = minimal_minus_repository[];
    const METADATA: {
        readonly method: "GET";
        readonly path: "/users/:username/repos";
        readonly request: null;
        readonly response: {
            readonly type: "application/json";
            readonly encrypted: false;
        };
    };
    const path: (username: string, query: getByUsername.Query) => string;
    const random: (g?: Partial<typia.IRandomGenerator>) => minimal_minus_repository[];
    const simulate: (connection: IConnection<getByUsername.Headers>, username: string, query: getByUsername.Query) => Output;
}

How to use

import * as GithubSDK from "@kakasoo/github-sdk";

// GET /users/:username/repos
GithubSDK.functional.users.repos
  .getByUsername(
    {
      host: "http://api.github.com",
      headers: {
        Authorization: "githubToken",
      },
    },
    "kakasoo",
    {},
  )
  .then(console.log);

Software Development Kit

This is a SDK library generated by @nestia/migrate or @nestia/editor.

With this SDK library, you can easily and safely interact with backend server.

Just import and call some API functions like gif image below:

nestia-sdk-demo

Left is server code, and right is client code utilizing the SDK

What Nestia is:

Nestia Logo

GitHub license npm version Downloads Build Status Guide Documents

Nestia is a set of helper libraries for NestJS, supporting below features:

  • @nestia/core: Super-fast decorators

  • @nestia/sdk:

    • Swagger generator evolved than ever
    • SDK library generator for clients
    • Mockup Simulator for client applications
    • Automatic E2E test functions generator
  • @nestia/migrate: Migration from Swagger to NestJS

  • @nestia/editor: Online TypeScript Swagger Editor

  • nestia: Just CLI (command line interface) tool

Note

  • Only one line required, with pure TypeScript type
  • Enhance performance 30x up
    • Runtime validator is 20,000x faster than class-validator
    • JSON serialization is 200x faster than class-transformer
  • Software Development Kit
    • SDK is a collection of fetch functions with type definitions like [tRPC](https://> trpc.io/)
    • Mockup simulator means embedded backend simulator in SDK
      • similar with msw, but fully automated

FAQs

Package last updated on 21 Aug 2024

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