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 🙏

© 2026 – Pkg Stats / Ryan Hefner

signalk-vcan-logplayer

v1.4.3

Published

Replay / reprocess NMEA2000 log files with different format ('SignalK', 'Actisense', 'SocketCAN / candump', 'candump variant with timestamp')

Readme

VCAN Log Player Plugin for SignalK

Function and goal of the plugin

The plugin is able to replay / reprocess NMEA2000 log files. The log files can be in the following formats:

  1. SignalK log file format

    • Example: "1757152681394;A;2025-09-06T09:58:01.393Z,6,127258,1,255,8,ff,f7,34,40,62,01,ff,ff"
  2. Actisense format

    • Example: "2025-09-06T09:58:01.393Z,6,127258,1,255,8,ff,f7,34,40,62,01,ff,ff"
  3. SocketCAN / candump format

    • Example: "can0 0DFD0264 [8] FF E1 00 FA 63 FB FF FF"
  4. candump variant with timestamp

    • Example: "(1693994280.058123) can0 09F8027E [8] FF F7 34 40 62 01 FF FF"

In case the log file is in SignalK, Actisense or candump variant with timestampe format:

  • the original timestamp can be kept (if configured in plugin configuration).
  • the timeframe of processed lines can be configured in the plugin configuration (start / end time)

Plugin configuration

  1. Input Directory

    Specify the directory in which the log file for processing is expected. The name of the log file must be input.log.

  2. Create log file (yes/no)

    During (re-)processing, a log file named vcan-logplayer.log is created in the input directory. It documents the processing of the input file, including informational and error messages, timestamps of processed messages (start/end), counts of each PGN along with their respective sources (SRC), and the description of each PGN.

  3. Keep original timing (yes/no)

    The processing of the log file can be done according to the original timestamps of the recorded records. The plugin will process the file and wait for the next record according to the delta of the timestamp in the original file.

  4. Use original timestamps (yes/no)

    While processing data via the canbus, SignalK creates the timestamps according to the processing time. With this option you can keep the original timestamps recorded in the log file.

  5. Specific timeframe (yes/no)

    The reprocessing of the log file is only done for a specific time frame. The time frame is configured in two separate fields (start/end) in the format HH:MM:SS (HH=hours,MM=minutes,SS=seconds - e.g. 23:40:58). End time must be equal or greater than start time.

ATTENTION: SignalK server must be restarted if a new file has been copied to the input directory! Alternatively disable the plugin and enable it afterwards again in order to start the processing.

Changelog

Version 1.0.0

  • Initiales Release

Version 1.3.2

  • Enhanced log file information

Version 1.4.0

  • Changed to "Embedded Plugin Configuration Forms"

Version 1.4.1-1.4.3

  • Minor bugfixes