find-book
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

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);
  });

Package Sidebar

Install

npm i find-book

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

7.58 kB

Total Files

9

Last publish

Collaborators

  • huxiaoshuai666