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

1.0.0 • Public • Published

use-book

📚 use-book is a hook that lets you get product info from url or book cover in React.

build passin license MIT npm package twitter URL

Table of Contents

Install via npm

npm i use-book

Quick started

git clone github.com/tseijp/use-book
cd use-book
npm i
npm start

Simple example

import React from 'react'
import { useBook } from 'use-book'
 
export function App() {
    const book = useBook('https://amazon.com/xxx/dp/xxx')
    return <img {...book.img} />
}

Available hooks

Hook Description
useBook get amazon data from url

Performance pitfalls

URL

value https://{HOST}/images/P/{ASIN/ISBN}.{COUNTRY}.{SIZE}
HOST images-na.ssl-images-amazon.com or images-jp.amazon.com
ISBN International Standard Book Number
ASIN Amazon Standard Identification Number
COUNTRY Japan:09

SIZE

value mean w*h size book size notes
THUMBZZZ samnale 75×75 52×75
TZZZZZZZ small 110×110 77×110
MZZZZZZZ middle 160×160 112×160
LZZZZZZZ large 500×500 349×500 if h<500, return Full size image

Package Sidebar

Install

npm i use-book

Homepage

/

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

17.9 kB

Total Files

10

Last publish

Collaborators

  • tsei