Socket
Socket
Sign inDemoInstall

vndb-api-kana

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vndb-api-kana

api wrapper for vndb.org


Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

vndb-api-Kana

An API wrapper for VNDB HTTP API(v2) that allows you to interact with the VNDB API in a type-safe manner using TypeScript.

Features

  • Strong type checking for all the parameters passed in when making requests to the VNDB API, which ensures that your code is correct and reduces the chances of runtime errors.

  • TODO

Installation

To install this package, simply run the following command:

npm install vndb-api-kana axios

Usage

import Kana from 'vndb-api-kana';

const kana = new Kana({
  baseURL: 'https://api.vndbproxy.org/kana'
});

kana.setAuth(TOKEN);

kana.apis
  .getVn({
    filters: ['search', '=', 'ハミダシクリエイティブ凸'],
    fields: ['id', 'title', 'image.id'],
  })
  .then((res) => {
    console.log(
      res.results.map((item) =>
        item.image?.map((image) => image.id).join(', '),
      ),
    );
  });
  .catch((e) => {
    // catch axios error
  });

You can also use the API directly by importing the api object and types from the package.

import { api, CharacterFilters, Character } from 'vndb-api-kana';

const characterFilters: CharacterFilters = [
  'and',
  ['weight', '>', 200],
  ['height', '<', 140],
];


(async () => {
  try {
    const res = await api.getCharacter({
      filters: characterFilters,
      fields: ['id', 'traits.name'],
    });
    console.log(res);
  } catch (e) {
    // do something
  }
})();

// others function:
const renderChar = (c: Character) => {
  // ...
};

Images

Keywords

FAQs

Package last updated on 30 Aug 2023

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc