2.0.6 • Published 5 years ago

@payw/cau-food-scraper v2.0.6

Weekly downloads
26
License
MIT
Repository
github
Last release
5 years ago

CAU Food Scraper (CAUFS)

A CAU restaurant menu scraper for Node.js


NOTE: You should follow the migration guide in favor of v2 release.


What's new in v2

  • 🎯 Promise-based precise data scraping without any wasting of time
  • 🚀 Boost up to 5x faster
  • 🗑 Reduce dependencies which are totally unnecessary

Installation

npm install @payw/cau-food-scraper
# OR
yarn add @payw/cau-food-scraper

Usage

// Node.js
const { CAUFS } = require('@payw/cau-food-scraper')
// webpack
// import { CAUFS } from '@payw/cau-food-scraper'

CAUFS({
  id: 'portalId',
  pw: 'portalPw',
  days: 1 // optional (default: 5)
}).then(data => {
  // Do something
})

Migration from v1 to v2

You should import the library differently.

/* v1 */
// Node.js
const foodScrape = require('@payw/cau-food-scraper').default
// webpack
import foodScrape from '@payw/cau-food-scraper'

/* v2 */
// Node.js
const { CAUFS } = require('@payw/cau-food-scraper')
// webpack
import { CAUFS } from '@payw/cau-food-scraper'

Currently, the chage below is deprecated and will be reverted back on the next major release.

Returning data type of Day and its children types had been slightly changed. The package includes a type definition with more detailed information.

/* v1 */
type Day = {
  date: string
  breakfast: Food[]
  lunch: Food[]
  supper: Food[]
}

/* v2 */
type Day = {
  date: string
  timeGroup: {
    breakfast: Restaurant[]
    lunch: Restaurant[]
    supper: Restaurant[]
  }
}
2.0.6

5 years ago

2.0.5

5 years ago

2.0.4

5 years ago

2.0.3

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.1.10

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

1.0.0-beta.1

5 years ago

1.0.0-alpha.1

5 years ago