https://github.com/justbecoder/find-book
一个根据ISBN(国际标准图书编号)查询图书信息的库,返回书名、作者、副标题、语言、出版日期等关键信息。 A library for querying book information based on ISBN (International Standard Book Number).
https://github.com/justbecoder/find-book
book-details book-retrieval isbn isbn-search
Last synced: 10 months ago
JSON representation
一个根据ISBN(国际标准图书编号)查询图书信息的库,返回书名、作者、副标题、语言、出版日期等关键信息。 A library for querying book information based on ISBN (International Standard Book Number).
- Host: GitHub
- URL: https://github.com/justbecoder/find-book
- Owner: justbecoder
- Created: 2023-11-16T03:47:43.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-16T12:33:51.000Z (about 2 years ago)
- Last Synced: 2025-01-31T06:09:38.778Z (11 months ago)
- Topics: book-details, book-retrieval, isbn, isbn-search
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# find-book
一个根据ISBN(国际标准图书编号)查询图书信息的库,返回书名、作者、副标题、语言、出版日期等关键信息。
A library for querying book information based on ISBN (International Standard Book Number).
# Install
```
npm install find-book -S
```
# Usage
```
import { find, findOne } from 'find-book';
findOne({
isbn: "9787557677404",
})
.then((result) => {
console.log(result);
})
.catch((e) => {
console.log("error", e);
});
```