This package has been deprecated

Author message:

Go to https://www.npmjs.com/package/eslite-com-crawler because the package name has been changed

@flowereatfish/eslite-com-api
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Unofficial Eslite-com Collection API

NPM version Travis-CI status AppVeyor status Codecov status Dependencies status Code style License MIT

非官方誠品網路書店 API

Requirements

  • This construct uses Axios.js, so you need to care about Cross-Origin Requests (CORS).

Installation

  • NPM
npm install @flowereatfish/eslite-com-api --save
  • Yarn
yarn add @flowereatfish/eslite-com-api

Usage

Node.js version 8 or higher (with full Async/Await support)

const esliteComCollectionApi = require('@flowereatfish/eslite-com-api');

const run = async () => {
  const results = await esliteComCollectionApi('橡皮擦計畫');
  console.log(results);
};

run();

Others

const esliteComCollectionApi = require('@flowereatfish/eslite-com-api');

esliteComCollectionApi('橡皮擦計畫')
  .then(results => console.log(results));

Demo

Commands

# To download the files and install packages.
$ git clone https://github.com/FlowerEatFish/eslite-com-api.git
$ cd eslite-com-api
$ yarn install # npm install

# To run a demo.
$ yarn start # npm start

Results

>>> You search data using keyword "春夏秋冬,日日食光。生活美學家的鑄鐵鍋料理手帖".

[
  {
    title: '春夏秋冬, 日日食光: 生活美學家的鑄鐵鍋料理手帖',
    url: 'http://www.eslite.com/product.aspx?pgid=1001130572489683&kw=%e6%98%a5%e5%a4%8f%e7%a7%8b%e5%86%ac+%e6%97%a5%e6%97%a5%e9%a3%9f%e5%85%89+%e7%94%9f%e6%b4%bb%e7%be%8e%e5%ad%b8%e5%ae%b6%e7%9a%84%e9%91%84%e9%90%b5%e9%8d%8b%e6%96%99%e7%90%86%e6%89%8b%e5%b8%96&pi=1',
    author: [ '渡邊有子著' ],
    publisher: '臉譜出版社',
    publicationDate: '2016/02/27',
    imageUrl: 'http://pic.eslite.com/Upload/Product/201602/s/635912082484381250.jpg',
    price: { discount: 9, currentPrice: 324 },
    introduction: "'今天在廚房也要用心過生活—— 料理界的松浦彌太郎, 教你品味四季的本質, 追求食材的深層風味, 記憶節氣帶來的美好, * " +
      'Instragm超過六萬粉絲追蹤的生活美學料理家——渡邊有子 崇尚自然、注重優雅品味的料理生活家渡邊有子, ' +
      '在日本已分享了許多對於簡單生活的想法和實行秘訣, 尤其在飲食方面,更提出許多同時注重美味、美感和健康的料理,因此廣受大眾歡迎。 ' +
      '在出版過許多料理食譜書後,她認為, 使'
  }
]
>>> You search data using keyword "disease".

[ {...}, {...}, ... ] # Array.prototype.length <= 10
>>> You search data using keyword "blablablablablablablablablablablabla".

null

API documentation

Input parameters

import EsliteComCollectionApi from 'eslite-com-collection-api'; // Here uses development mode as an example

const result = EsliteComCollectionApi(
  keyword, // string. Necessary.
           // If you set it as null, it will get an error.
  page, // number. Positive integer. Default: 1.
        // Every page only shows maximum 10 results.
)

Output results

// If you get one or more result(s), it will return an "array".
result = [
  {
    title: string or null,
    author: string[] or null,
    publisher: string or null,
    publicationDate: string or null,
    imageUrl: string or null,
    introduction: string or null,
    price: {
      discount: number or null,
      currentPrice: number or null,
    },
    url: string or null,
  },
  { ... }, { ... }, ...
];

// If you have not got any result, it will return a "null".
result = null;

Readme

Keywords

Package Sidebar

Install

npm i @flowereatfish/eslite-com-api

Weekly Downloads

1

Version

1.0.5

License

MIT

Unpacked Size

143 kB

Total Files

15

Last publish

Collaborators

  • flowereatfish