1.3.2 โ€ข Published 1 year ago

@odg/latam-test v1.3.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

codecov Stargazers Made by ODGodinho Forks Repository size GitHub last commit License StyleCI

Table of Contents


๐ŸŽ‡ Benefits

  • ๐Ÿš€ Speed start new crawler using typescript
  • ๐Ÿšจ Over 800 rules for pattern, possible errors and errors in Linter
  • ๐ŸŽ‡ Code quality guaranteed
  • ๐Ÿ“ข AutoReview when opening a pull-request/merge AutoReview Comment example
  • ๐Ÿงช Automatic Test when opening pull-request/merge
  • ๐Ÿ“ฆ Automatic Package and release generate on merge
  • โš™๏ธ IOT/IOC (Inversion of Control) for easy use of libraries
  • ๐ŸŸข Make:Files Command to make base files

๐Ÿ“— Libraries

๐Ÿ“ Dependencies

๐Ÿ”˜ Use Template

Click in use this template button and clone your template project

Use Template

๐Ÿ™ˆ Change to Puppeteer

To change you crawler to use puppeteer you change ./engine.ts file for:

import puppeteer, {
    type Browser,
    type PuppeteerLaunchOptions,
    type Page,
    type BrowserContext,
    type PuppeteerNode,
} from "puppeteer";

export type BrowserTypeEngine = PuppeteerNode;

export type BrowserClassEngine = Browser;

export type ContextClassEngine = BrowserContext;

export type PageClassEngine = Page;

export type BrowserOptionsEngine = PuppeteerLaunchOptions;

export const browserEngine = puppeteer;

โฉ Get Started


๐Ÿฆป Event / Listeners

Events can be fired with EventBusInterface Example Include the execution of your page in an event so that you can execute any page at any time

export class ExampleEventListener implements EventListenerInterface<EventTypes, EventName.ExampleEvent> {

    @inject(ContainerName.Logger)
    public readonly log!: LoggerInterface;

    public async handler(_receivedData: unknown) {
        await this.log.info('Example Event Listener');
    }

}

Register all Events name in ./src/app/Enums/EventName.ts

Register all Events Types in ./@types/EventsInterface.ts

Register your events in EventServiceProvider to automatic listeners.

โ†–๏ธ Selector

The selectors are in the selectors folder

export const googleSearchSelector = {
    searchInput: "input[name=\"q\"]",
    buttons: {
        submit: "input[name=\"btnK\"] >> visible=true",
    },
};

export type GoogleSearchSelectorType = typeof googleSearchSelector;

Register all Selectors in ./src/app/Selectors/index.ts

โš™๏ธ Container Bind

this.bind(
    ContainerName.Logger,
).to(ConsoleLogger).inSingletonScope();

Register all Container name in src/app/Enums/ContainerName.ts Register all Container Inject in src/app/Container.ts

โ• Extract Text Helper

Use Str, Num, Arr helpers class to manipulate Text, Numbers and Arrays

import { Str } from "@odg/chemical-x";

const value = new Str(
    this.page.locator("#money").innerText(),
).money();

๐ŸŸข Make File

To Make a file run command

Use this to make Page, Handler, Selectors...

yarn odg make

Example to make Page File

yarn odg make:page Search

# help with
yarn odg make:page --help

๐Ÿ’“ Cycle Time

๐Ÿ“ฝ๏ธ Project Life Cycle

Project Life cycle

LifeCycle

๐Ÿ  Service Life Cycle

Example Service Life Cycle

LifeCycle

๐Ÿ’ฆ Page Life Cycle

Example Page Life Cycle

LifeCycle

๐Ÿ€„ Handler Life Cycle

Example Handler Life Cycle

LifeCycle

๐Ÿ’ป Prepare To Develop

Copy .env.example to .env and add the values according to your needs.

๐Ÿ“ Start Project

First install dependencies with the following command

yarn install
# or
npm install

๐Ÿ“จ Build and Run

To build the project, you can use the following command

if you change files, you need to run yarn build and yarn start again

yarn build && yarn start
# or
yarn dev

๐Ÿงช Teste Code

To Test execute this command

yarn test
# or
yarn test:watch