Skip to content

trunghng/pkmdb-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pkmdb-scraper

A Node.js web server that extracts Let's Go Pikachu & Let's Go Eevee Pokédex from the Pokémon Database.

Getting started

  1. Clone the repository

    git clone https://github.com/trunghng/pkmdb-scraper <project_name>
  2. Install dependencies

    cd <project_name>
    npm install
  3. Build and run the project

    npm start
  4. Navigate to http://localhost:3000

Project Structure

.
├── README.md
├── package-lock.json
├── package.json
└── src
    ├── app.js
    ├── config.js
    ├── controllers
    │   ├── detailController.js
    │   └── homeController.js
    ├── public
    │   ├── css
    │   │   ├── 404.css
    │   │   ├── detail.css
    │   │   └── index.css
    │   └── js
    │       ├── detail.js
    │       └── index.js
    ├── routes
    │   ├── detail.js
    │   └── index.js
    ├── utils.js
    └── views
        ├── 404.pug
        ├── detail.pug
        └── index.pug