2.1.59 • Published 4 years ago

watchfolder-jet v2.1.59

Weekly downloads
7
License
MIT
Repository
github
Last release
4 years ago

Usage (I hope...)

Tails all logs in a directory including those created when the program is running.

    const jet = require("watchfolder-jet").watch(
        "/var/log/my-logs/"
    ).filter(
        (file) => (file.action === 'add' || file.action === 'create') && file.isReadable
    ).map(
        (file) => tail(file).pipe(new scramjet.StringStream())
            .split("\n")
    ).reduceNow(
        (acc, file) => (acc.add(file)),
        new scramjet.MultiStream([])
    ).mux(
        // comparator for log lines (just for the example, there should be no need for this except for a couple first lines)
        (lineA, lineB) => new Date(lineA.split(" ").slice(0,2).join(" ")) - new Date(lineB.split(" ").slice(0,2).join(" "))
    ).pipe(
        process.stdout
    );

API

require("watchfolder-jet").watch(directory);

Watches a directrory for changes

require("watchfolder-jet").finished(directory, {/* options */ timeout: 10000});

Watches a directory for completed files only.

Stream objects

The streamed objects have the following structure:

    {
        action: "",    // The action that happened on the file, one of the following:
                       //     ["add", "create", "remove", "change"];
        filename: "",  // The changed filename (full path)
        stat: {},      // The up to date stat
        prevstat: {}   // The previous stat (only on "change")
    }

License and contributions

The module is released under the condition of the MIT license. Please see the attached LICENSE(license file).

2.1.59

4 years ago

2.1.58

4 years ago

2.1.57

4 years ago

2.1.56

4 years ago

2.1.55

4 years ago

2.1.54

4 years ago

2.1.53

4 years ago

2.1.52

4 years ago

2.1.51

4 years ago

2.1.50

4 years ago

2.1.49

5 years ago

2.1.48

5 years ago

2.1.47

5 years ago

2.1.46

5 years ago

2.1.45

5 years ago

2.1.44

5 years ago

2.1.43

5 years ago

2.1.42

5 years ago

2.1.41

5 years ago

2.1.40

5 years ago

2.1.39

5 years ago

2.1.38

5 years ago

2.1.37

5 years ago

2.1.36

5 years ago

2.1.35

5 years ago

2.1.34

5 years ago

2.1.33

5 years ago

2.1.32

5 years ago

2.1.31

5 years ago

2.1.30

5 years ago

2.1.29

5 years ago

2.1.28

5 years ago

2.1.27

5 years ago

2.1.25

5 years ago

2.1.24

5 years ago

2.1.23

5 years ago

2.1.22

5 years ago

2.1.21

5 years ago

2.1.20

5 years ago

2.1.19

5 years ago

2.1.18

6 years ago

2.1.17

6 years ago

2.1.16

6 years ago

2.1.15

6 years ago

2.1.14

6 years ago

2.1.13

6 years ago

2.1.12

6 years ago

2.1.11

6 years ago

2.1.10

6 years ago

2.1.9

6 years ago

2.1.8

6 years ago

2.1.6

6 years ago

2.1.5

6 years ago

2.1.4

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago