Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
db-knih-api
Advanced tools
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.
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.
Pro instalaci DB Knih API můžete použít npm:
npm install dbknih
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"
);
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.
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;
}
Tento projekt je licencován pod MIT licencí
FAQs
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.
We found that db-knih-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.