GithubHelp home page GithubHelp logo

voidvolker / nano-watcher Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 1.0 45 KB

Small and fast watch for files and directory changes and commands execution

License: MIT License

JavaScript 1.28% CoffeeScript 98.72%

nano-watcher's Introduction

Join the chat at https://gitter.im/VoidVolker/nano-watcher

nano-watcher

Small and fast watch for files and directory changes and commands execution

Global install:

npm i -g nano-watcher

Run watcher:

nano-watcher

In this case nano-watcher will search config file nano-watcher.json in all directories from current and up.

nano-watcher -c ./path/to/config.json
nano-watcher --config /path/to/config.json
nano-watcher -c path/to/directory/with/nano-watcher.json/

Local install:

npm i nano-watcher

Run watcher:

./node_modules/nano-watcher/bin/nano-watcher -c path/to/config.json

VirtualBox share / mounted FS install:

npm i nano-watcher --no-bin-links

When running nano-watcher is watching and config file for changes and automatically reload it, so you don't need to restart nano-watcher for config reload.

Config example:

{
    "interval": 200,
    "delay": "500",
    "cwd": "directory/to/run/",
    "sources": [
        {
            "path": "../index.js",
            "command": {
                "path": "./",
                "name": "dist build",
                "app": "node",
                "args": ["build.js"]
            }
        },{
            "path": "./client/app",
            "ext": ["coffee"],
            "command": {
                "name": "coffee client",
                "app": "coffee",
                "args": [ "-m", "-b", "-c", {"data": "file"} ]
            }
        },{
            "path": "./server",
            "ext": ["js"],
            "command": {
                "name": "WS server",
                "app": "node-debug",
                "args": ["--no-preload", "--cli", "server.js"]
            }
        }
    ]
}

interval - interval beetween checks of files change time

delay - delay before commands run

cwd - working directory, by default - same as config

command - can be object or array of objects (several commands)

Restart logic:

  • Kill process tree, if first started process is still active
  • Sleep for delay ms
  • Run process (spawn) with arguments and selected directory

This module was developed to be powerfull and small tool to run commands on files changes. Works in Virtual box and with mounted FS.

CLI commads:

--config, -c <path> — Load config, where path is *.json file of directory with nano-watcher.json file

--json, -j {...} — Read config from *.json

--interval, -i 200 — Interval in ms

--delay, -d 500 — Restart delay in ms

--cwd, -w <path> — Working directory

--help, -h — Show this help

--version, -v — Show version

nano-watcher's People

Contributors

gitter-badger avatar voidvolker avatar

Watchers

 avatar  avatar

Forkers

gitter-badger

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.