npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pioneerjs/common

v1.0.2

Published

pioneerjs common package.

Downloads

38

Readme

pioneerjs

pioneerjs - a puppeteer framework

NPM npm npm bundle size npm

Pioneerjs is a puppeteer framework that uses the principle of Dependency Injection to inject all the resources(page,browser,...) you need.

  • Pioneerjs helps you to manage the Browser and Page objects of Puppeteer
  • It instantiates and automatically injects Page, Browser, ScriptContext objects for each runnable script
  • You can use RunnableScript to run the puppeteer code and start it with @Runnable('https://xxx.com') decorator
  • You can use InjectableScripts in any RunnableScript and inject them automatically using the @Inject decorator, no instantiation is needed, the Page, Browser, ScriptContext objects of an InjectableScript are the same as in the RunnableScript it is in, and InjectableScripts generally play the role of tool scripts

Getting Started

# init your package.json
npm init
# install dependencies
npm install  puppeteer-core  @pioneerjs/core @pioneerjs/common
# or you can just install pioneerjs
npm install  puppeteer-core  pioneerjs
# init typescript config
tsc --init

tscondig.json

{
  "compilerOptions": {
    "target": "es5", 
    "module": "commonjs",
    "outDir": "./dist", 
    "strict": true,
    "esModuleInterop": true, 
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true 
  }
}

create app.ts



import { PioneerFactory } from "@pioneerjs/core";
import { TestScript } from "./src/test";


PioneerFactory.launch({
    // your chrome path
    executablePath: "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
    defaultViewport: null,
    headless: false,
}).then(async pioneer => {

    pioneer.startup({
        scripts: [TestScript],
        events: ['request']
    })
})

create src/test.ts

import { Injectable, Runnable, Inject } from "@pioneerjs/common";
import { InjectableScript, RunnableScript, WaitForScript } from "@pioneerjs/core";
import { Protocol } from "puppeteer-core";

// create your new script
@Injectable()
export class Spider extends InjectableScript {
    async getCookie(url: string): Promise<Protocol.Network.Cookie[]> {
        await this.page.goto(url)
        return await this.page.cookies()
    }
}

 /**
 * create a new runnable script  
 * @Runnable({url:"https://baidu.com"})  // goto "https://baidu.com"
 * or
 * @Runnable()  // do nothing
 */ 
@Runnable()
export class TestScript extends RunnableScript {

    @Inject()
    private mySpider!: Spider ;

    @Inject()
    private waitFor!: WaitForScript ;

    async run(): Promise<void> {
 
 
        console.log(await this.mySpider.getCookie("https://baidu.com")); // <html>...</html>
        console.log("waidForSleep");
        // auto inject you don't need to instance
        this.waitFor.sleep(3000)
        console.log(this.waitFor.page.url());

        // InjectableScript use same page,and context with RunnableScript
        console.log(this.waitFor.page === this.page);

        // eventPool: catch all the event
        console.log(this.context.eventPool.getEvents('request')?.length)

        // Script communication
        this.context.store.set('say', 'hello word')
        console.log(this.waitFor.context.store.get('say'))
    }
    // called when document change
    async update(): Promise<void> {
        console.log("update", this.page.url());
    }
}
# build your project
tsc
# run
node dist/index.js

out put like this :

[pioneerjs]:script injected - TestScript.Spider
[pioneerjs]:script injected - TestScript.WaitForScript
[pioneerjs]:script running - TestScript
[
  xxx
]
waidForSleep
https://www.baidu.com/
true
43
hello word
update https://www.baidu.com/