🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

codewatch

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codewatch

A CLI for performing actions when one or more files change

latest
npmnpm
Version
0.0.1
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

cpwatch

A minimal utility for performing actions when something changes in the file system.

Overview

cpwatch is a CLI for running automated actions when files. It uses a Watcher-plugin architecture that supports (nay, expects!) modern ESM / JS / Typescript code.

The API is designed to accommodate the following use cases:

  • Full build cpwatch does a sweep of the file system being monitored and passes every file / directory it finds to the corresponding Watcher. This is the basic "build all the things" mode.

  • Watch Mode After doing a Full Build, cpwatch continues monitoring the file system for changes, notifying each Watcher of changes as needed. This is useful in local dev environments for keeping things in sync in realtime.

  • Check Mode cpwatch only looks at files passed on the command line (i.e. no Full Build), and does not alter the filesystem. Instead, terminates with a non-zero exit if changes are needed. This is useful for pre-commit hooks (e.g. lefthook) to ensure files are up to date before committing changes to a repo.

Built in Watchers

cpwatch currently ships plugins that we, CodePen, have found useful in our build environment:

  • AssetsWatcher: For copying hard-linking images, stylesheets, and other non-code assets between Typescript's "src" and "dist" directories
  • TypescriptCleanupWatcher: For cleaning up vestigial artifacts that get left behind when renaming JS/TSX files
  • ScriptIndexWatcher: For auto-generating hierarchical index.js files
  • StaticFileWatcher: For copying and building static assets

Configuration

Configuration is done in-code, typically in a codewatch.config.ts file. Examples forthcoming

Custom Watcher plugins

Plugin API documentation forthcoming.

Keywords

file watcher

FAQs

Package last updated on 30 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts