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

chrome-file-watcher

v1.2.0

Published

A package to watch PDF and DOC downloads using Chrome Remote Interface and emit events via Socket.IO

Downloads

224

Readme

Chrome File Watcher

A Node.js package that watches for PDF and DOC file downloads using Chrome's DevTools Protocol and emits events via Socket.IO.

Features

  • Monitors file downloads using Chrome's DevTools Protocol.
  • Detects and handles .pdf, .doc, and .docx file types.
  • Emits real-time file download events to a Socket.IO server.
  • Automatically formats code with Prettier and lints it with ESLint.
  • Pre-commit hooks using Husky and lint-staged to ensure consistent code quality.

Prerequisites

  • Node.js v14.x or later
  • Chrome installed with remote debugging enabled (--remote-debugging-port=9222)

Installation

  1. Clone the repository:

    git clone https://github.com/your-repo/chrome-file-watcher.git
    cd chrome-file-watcher
  2. Install dependencies:

    npm install
  3. Enable Husky hooks:

    npm run prepare

Usage

  1. Make sure Chrome is running with remote debugging enabled:

    google-chrome --remote-debugging-port=9222
  2. Set up the watcher in your code:

    import { setupFileDownloadWatcher } from 'chrome-file-watcher';
    
    const config = {
      chromeDevToolsPort: 9222, // Default Chrome DevTools port
      socketServerUrl: 'http://localhost:3000',
      channelName: 'file-download-channel',
    };
    
    setupFileDownloadWatcher(config);
  3. Start the project:

    npm start
  4. Any detected file downloads (.pdf, .doc, .docx) will be emitted to the specified Socket.IO channel.

Scripts

  • build: Compiles TypeScript code.
  • start: Runs the project using ts-node.
  • watch: Recompiles TypeScript code on changes.
  • lint: Runs ESLint to lint the source files.
  • lint:fix: Automatically fixes linting issues.
  • format: Formats code using Prettier.

Pre-commit Hooks

The project uses Husky and lint-staged to ensure code quality before every commit:

  • Husky runs a pre-commit hook that triggers lint-staged.
  • lint-staged runs ESLint and Prettier on staged files.

Running Lint and Format

You can manually lint and format your code with the following commands:

  • Lint files:

    npm run lint
  • Fix linting issues:

    npm run lint:fix
  • Format code:

    npm run format

Project Structure

your-package/
  ├── src/
  │   ├── interfaces/
  │   │   ├── ChromeFileWatcherConfig.ts
  │   │   ├── Config.ts
  │   │   ├── SocketServiceConfig.ts
  │   │   ├── IChromeFileWatcher.ts
  │   │   ├── ISocketService.ts
  │   ├── services/
  │   │   ├── ChromeFileWatcher.ts
  │   │   ├── SocketService.ts
  │   └── index.ts
  ├── dist/
  ├── .husky/
  ├── .eslintignore
  ├── .prettierignore
  ├── .prettierrc
  ├── eslint.config.js
  ├── tsconfig.json
  ├── package.json
  └── README.md

ESLint and Prettier Setup

The project uses ESLint and Prettier for code linting and formatting, configured to run automatically on every commit.

ESLint

  • ESLint is used to statically analyze your TypeScript code for potential issues.

You can run the linter manually:

npm run lint

Prettier

  • Prettier ensures consistent code formatting.

To format your code, run:

npm run format

Husky and lint-staged

Husky and lint-staged are set up to run the following tasks on every commit:

  • ESLint to check for coding errors.
  • Prettier to format the code.

To ensure that Husky is set up correctly, run:

npm run prepare

Contributing

Feel free to open issues or create pull requests. Make sure to follow the project's coding standards by running lint and format commands before submitting your changes.

License

This project is licensed under the MIT License.