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

backmarket-watcher

v1.1.3

Published

Node.js cli tool for monitoring BackMarket products.

Downloads

36

Readme

backmarket-watcher

GitHub license GitHub last commit npm downloads Docker pulls

Node.js cli tool for monitoring BackMarket products. Notifications are shown when the price of any of the products changes. The following notification types are supported:

  • Desktop notification
  • Console output
  • Telegram chat message
  • IFTTT integration
  • Push message via Gotify

See below for Docker usage.

Installation

  1. Install Node.js 8.x or higher (Windows | Linux | OSx).
  2. npm install -g backmarket-watcher
  3. backmarket-watcher config. Add the products you want to watch here. Optionally enable / disable certain notifications. See Configuring Telegram notifiations for instructions on setting up the Telegram notifications.
  4. backmarket-watcher watch

Configure the watch list

You ca add products to the watch list by search or individually by editing the config file :

"productsSearch": [
  "https://www.backmarket.com/search?q=product&ga_search=product"
],
"products": [
  "https://www.backmarket.com/first-product/123456789.html",
  "https://www.backmarket.com/second-product/123456789.html"
]

Simply navigate to your local backmarket website and paste desired urls.

Note that search filter are not supported, instead use search queries :

brand "only this string" -NotThatOne

CLI documentation

Usage: backmarket-watcher <command>

Commands:
  config        Edit the config file.
  config-reset  Reset the config to the default values.
  config-path   Show the path of the config file.
  watch         Start watching for changes.

Options:
  --help     Show help                                                 [boolean]
  --version  Show version number                                       [boolean]

Displaying the notifications in the Windows notification center

By default Windows doesn't display the notifications in the notification center. You can enable this by doing the following steps.

  1. Go to 'notifications & actions settings' (Windows key, type 'notifications', enter)
  2. Click on the 'toast' app at the bottom of the screen.
  3. Enable the 'show in action center' checkbox.

Configuring Telegram notifications

  1. Open a Telegram chat with BotFather.
  2. Follow the instructions to create your own bot.
  3. Copy the token and enter it in the configuration via backmarket-watcher config, and set enabled to true.
  4. Start the application backmarket-watcher watch
  5. Click the t.me/BOTNAME link from the BotFather chat message.
  6. Press BEGIN.
  7. Your bot should greet you, and show a notification about your products. Note: the bot will show the products which you configured. Multiple people can connect to the bot to get updates about these products.

Configure IFTTT integration

  1. Go to https://ifttt.com/create/.
  2. Click on this and select Webhooks.
  3. Fill in an Event Name (e.g. backmarket_updated).
  4. Click on that.
  5. Select anything you'd like to integrate with (e.g. Philips Hue).
  6. Finish setting it up. Note: value1 contains a plain text message, value2 contains an HTML message.
  7. Update the ifttt configuration via backmarket-watcher config:
    • set enabled to true
    • set webhookKey to the token found at Web Hook settings (last part of the URL)
    • add the Event Name selected in step 3 to the webhookEvents array

Note: You can add multiple events to webhookEvents

Docker

Note: the Docker image is a multiarch image. So it will also work on Raspberry Pi's.

Docker run

  1. Create a directory to store the config file and copy the config.defaults.json into YOUR_FOLDER/config.json. See above for instructions on how to configure the application. Make sure that the folder has the correct permissions, e.g. run chmod -R o+rwx config/ or you might get access denied errors on the file system. The app needs read/write access on the configuration file, e.g. to store token received in it.
  2. Run the following command. Example: a user john who stored the config in ~/docker/backmarket-watcher/config.json:
docker run \
 --name backmarket-watcher \
 -e TZ=Europe/Amsterdam \
 -v /home/john/docker/backmarket-watcher:/home/node/.config/backmarket-watcher-nodejs \
 youegraillot/backmarket-watcher

Note: When using Gotify as notification, make sure to put them on the same network in docker if hosted on the same docker host, e.g. docker network create gotify and use "--network=gotify" on both containers You can then use "http://gotify" on this container if --name gotify is used for the gotify container

Docker Compose

  1. Create a directory to contain all your Docker Compose things.
  2. Create a directory backmarket-watcher inside the created directory, and copy the config.defaults.json to backmarket-watcher/config.json. See above for instructions on how to configure the application.
  3. Create a file docker-compose.yaml:
version: "3"
services:
  backmarket-watcher:
    image: youegraillot/backmarket-watcher
    restart: unless-stopped
    environment:
      - TZ=Europe/Amsterdam
    volumes:
      - ./backmarket-watcher:/home/node/.config/backmarket-watcher-nodejs

Running with Heroku

  1. Install the Heroku CLI and login.
  2. From your terminal, run heroku config:set BACKMARKET_CONFIG=content, replacing content with the content of your config.json file.

Acknowlegment

This project is a fork of node-toogoodtogo-watcher