Skip to content

spiderpug/node-red-contrib-puppeteer-alpine

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-red-contrib-puppeteer-core-chromium

NodeRED nodes to control a headless chrome/chromium browswer with puppeteer.

Get started

You'll usually use nodes in this order:

launch -> new page -> goto -> selector/click/screenshot/etc

You can specify the location of your chrome/chromium browser in launch node.

To learn how to use puppeteer, see it's documentation.


Using with alpine docker

# Dockerfile

RUN set -x \
    && apk update \
    && apk upgrade \
    && apk add --no-cache \
    ttf-freefont \
    chromium \
    # Cleanup
    && apk del --no-cache make gcc g++ python binutils-gold gnupg libstdc++ \
    && rm -rf /usr/include \
    && rm -rf /var/cache/apk/* /root/.node-gyp /usr/share/man /tmp/* \
    && echo

About

NodeRED nodes to control a headless chrome with puppeteer

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 76.6%
  • JavaScript 23.4%