Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 735 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 735 Bytes

Description

Fake website to test website-scraper module. Serves endless amount of html pages with configurable amount of unique images and links to other pages. By default each page has 20 links and 100 images, amount of resources can be changed with ?a=N&img=M query string params.

E.g. http://localhost:3000?a=100&img=500 serves (slowly) a website with 100 links and 500 images for each page.

Requirements

  • Node.js version > 16 (lower versions were not tested)

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run build
$ npm run start:prod