Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/p1atdev/openbd
Deno 用 OpenBD クライアント
https://github.com/p1atdev/openbd
deno denoland openbd
Last synced: 8 days ago
JSON representation
Deno 用 OpenBD クライアント
- Host: GitHub
- URL: https://github.com/p1atdev/openbd
- Owner: p1atdev
- License: mit
- Created: 2022-06-01T01:22:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-01T04:04:12.000Z (over 2 years ago)
- Last Synced: 2024-12-17T07:46:00.206Z (22 days ago)
- Topics: deno, denoland, openbd
- Language: TypeScript
- Homepage: https://deno.land/x/openbd
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenBD Client for Deno
![Deno JS](https://img.shields.io/badge/deno%20js-000000?style=for-the-badge&logo=deno&logoColor=white)
![Testing](https://github.com/p1atdev/openbd/actions/workflows/test.yml/badge.svg)OpenBD 書籍情報 API の Deno クライアント
## 使い方
```ts
import { OpenBDClient } from "https://deno.land/x/[email protected]/mod.ts";const client = new OpenBDClient();
// または、
// const client = createOpenBDClient()
// のどちらでも可。正直どっちがいいかわからないから両方置いてある。// ISBN を指定します。配列で複数渡すことも可能です
const res = await client.searchBookRaw("9784049125207"); // キノの旅XXII the Beautiful Worldconsole.log(res);
```出力
```
[
{
onix: {
RecordReference: "9784049125207",
NotificationType: "03",
ProductIdentifier: { ProductIDType: "15", IDValue: "9784049125207" },
DescriptiveDetail: {
ProductComposition: "00",
ProductForm: "BA",
ProductFormDetail: "B111",
Collection: [Object],
TitleDetail: [Object],
Contributor: [Array],
Language: [Array],
Extent: [Array],
Subject: [Array],
Audience: [Array]
},
CollateralDetail: { TextContent: [Array], SupportingResource: [Array] },
PublishingDetail: { Imprint: [Object], Publisher: [Object], PublishingDate: [Array] },
ProductSupply: { MarketPublishingDetail: [Object], SupplyDetail: [Object] }
},
hanmoto: {
datemodified: "2019-07-10 10:15:58",
datecreated: "2019-06-08 10:15:02",
datekoukai: "2019-06-08"
},
summary: {
isbn: "9784049125207",
title: "キノの旅XXII the Beautiful World",
volume: "",
series: "",
publisher: "KADOKAWA",
pubdate: "20190710",
cover: "https://cover.openbd.jp/9784049125207.jpg",
author: "時雨沢恵一/著 黒星紅白/イラスト"
}
}
]
```レスポンスの方定義はありますが、現在 (v0.1.0) 時点では `searchBookRaw`
でレスポンスを取得することしかしていないので、若干扱いにくい部分があるかもしれないです。 ローマ字のキーや、たまに存在しないキーがあったり...
今後対応していきます。