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

db-knih-api

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db-knih-api

DB Knih API je npm balíček poskytující jednoduché rozhraní pro čtení informací z databáze knih. Balíček obsahuje funkce pro vyhledávání knih a získávání podrobností o konkrétní knize.

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

DB Knih API

DB Knih API je npm balíček poskytující jednoduché rozhraní pro čtení informací z databáze knih. Balíček obsahuje funkce pro vyhledávání knih a získávání podrobností o konkrétní knize.

Instalace

Pro instalaci DB Knih API můžete použít npm:

npm install dbknih

Použití

const { dbKnih } = require("dbknih");

const searchResults: SearchInfo[] = await dbKnih.search("Harry Potter");

const bookInfo: BookInfo[] = await dbKnih.getBookInfo(
  "https://example.com/book/harry-potter-and-the-philosophers-stone"
);
Metody

search(text: string): Promise<SearchInfo[]>: Vyhledává knihy na základě zadaného textu. getBookInfo(bookLink: string): Promise<BookInfo | undefined>: Získává podrobnosti o konkrétní knize na základě odkazu.

Typy
interface SearchInfo {
  name?: string;
  cleanName?: string;
  id?: number;
  year?: number;
  author?: string;
}

interface BookInfo {
  plot?: string;
  genres?: string[];
  year?: number;
  publisher?: string;
  rating?: number;
  numberOfRatings?: number;
  reviews?: Review[];
  cover?: string;
  pages?: number;
  originalLanguage?: string;
  isbn?: string;
}

interface Review {
  text?: string;
  rating?: number;
  username?: string;
  date?: string;
}

License

Tento projekt je licencován pod MIT licencí

FAQs

Package last updated on 14 Jun 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