gow

1.13.1 • Public • Published

Gow logo

NPM

Usage

Usage: gow [options]

Options:
    -c, --command     The command that should be executed at start and reload
    -f, --files       Glob pattern of files that should trigger a reload
    -s, --silent      Disable console output
    -d, --delay       Minimum delay between the reloads

The options are getting ignored, if a config file exists.

Examples

# Listen to all JavaScript files within the directory 
gow -f "***/*.js"
 
# Listen to all JSON and TypeScript files within the directory and make sure the TypeScript files are getting compiled on reload 
gow -f "***/*.ts" -f "***/*.json" -c "tsc && node ."

Config

gow.config.js

// Default config
module.exports = {
    command: "node .",  
    files: ["***/*"],
    silent: false,
    delay: 1000
}

Package Sidebar

Install

npm i gow

Weekly Downloads

2

Version

1.13.1

License

LGPL-3.0

Unpacked Size

42.3 kB

Total Files

8

Last publish

Collaborators

  • l2ig