Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Puppeteer のスクリプトをそれぞれの処理で切り出す(Promise オブジェクトの理解)

License

Notifications You must be signed in to change notification settings

murasamejo/divide-puppeteer-scripts

Repository files navigation

ビルド

TypeScript から JavaScript にビルドする。

$ yarn build
$ ls -la dist

関数化

app.js を参考にする。

  • 関数を async function hogeFuga() で定義する
  • await fooBar を返す
  • 関数を呼び出すときは await hogeFuga() で呼ぶ

クラス化

appWithClass.js を参考にする。関数化と同じ。

  • メソッドを async hogeFuga() で定義する
  • await fooBar を返す
  • メソッドを呼び出すときは await hogeFuga() で呼ぶ
    • 実際には await this.hogeFuga() などとして呼ぶことになるかもしれない

About

Puppeteer のスクリプトをそれぞれの処理で切り出す(Promise オブジェクトの理解)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •