Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.24 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.24 KB

diablo3profiles

Console application letting you parse Max Roll Guides and get easy lookup of items you need for individual specs. This project was created because I was unsure of which items I could toss or not with the builds I was going for, and it was too time consuming looking up every guide for answers.

Building

Go to root directory of the project

> yarn
> yarn build

Running

Running from source

> yarn ts-node src\index.ts

Running from build

> node dist\main.js

Usage

The program expects a guides.json file to be located in the same directory as index.ts or main.js

Example of guides.json

[
    {
        "url": "https://maxroll.gg/guides/firebird-mirror-image-wizard-guide",
        "name": "Firebird Mirror Image"
    },
    {
        "url": "https://maxroll.gg/guides/lod-twister-wizard-guide",
        "name": "LOD Twister"
    },
]

After running, the program will parse builds from maxroll and present the user with a search prompt.

usage