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

@xeronlab/filesync

v0.0.5

Published

An inexpensive tool to help you sync static and hybrid webapps with servers.

Downloads

6

Readme

@xeronlab/filesync

An inexpensive tool to help you sync static and hybrid webapps with servers.

'filesync' - An alternative helper tool to deal with peer to peer file and folder synchronization as a missing feature of most popular CLI file synchronization tools.

File sharing between machines is a very interesting operational use case for system admins and someone struggling to upload or download large files and sync them between machines efficiently.

An approch to find a file synchronization solution where others doesn’t fit properly.

When it comes to file sync operations between machines and version controlling the easiest catch comes to mind is to use popular tools like ‘git’, ‘rcp’, ‘scp’, ‘ftp’, ‘sftp’, and last but not least ‘rsync’. Each one of these command line tools of CLI tools has PROS and CONS 🤞. Here are some worst case scenerio with these popular tools. For ‘git’

Have to push and pull repo on both machines seperately. For large files it’s not a good choice to store files on remote and sync. Not everyone is comfortable using git Comes with manual authentication overhead git is focused and biased by design that is not specific for files and folder sychronization.

For ‘rcp’ ‘scp’ ‘ftp’ ‘sftp’

Uses uses secure shell access or dedicated permission controlled ‘ftp’ channel. performs all operations except file synchronization Doesn’t keep track of modified, new created files Doesn’t provide flexibility for command line input

Now for ‘rsync’

‘rsync’ is a great tool for file synchronization. But when you find that the hosting server or machine you want to interact with is not priviledged enough to have the ‘rsync’ command available, you simply get doomed. Specially it happens with cheap, budget friendly server. But it is a good tool that must run on both the client and the server side to achieve the file synchronization facility.

Recently I have faced the same issue with one of my servers which doesn’t have enough priviledge to have the ‘rsync’ command available. I’ve asked the hosting providers and they’ve clearly mentioned the fact. It was fair. Then I thought,

“I need a solution where I can perform the same file/folder synchronization operations with peace in mind and not paying extra charges for that.”

Now that also sounds fair right? At first, I thought we’ll it’s easy, I can

  • Trigger a Github Action
  • Instead of ‘rsync’ use ‘scp’ of ‘fpt’ or ‘sftp’ to upload/copy file to the server
  • Build an agent on another server to automate my tasks
  • Use or trigger another service from the server while manually checking the files and head commits and everything …

But I realized, well, I can do that. But it’s not the solution what I want and although, these ways are somewhat promising but not aligned with my use case and what I want. Life would be much simpler if I had access to the following command. The features I wanted

  • 0 Dependencies
  • Track file changes
  • Operation mode selection
  • SHA256 file checksum generation
  • Async execution
  • Platform independent
  • Optionally delete duplicate files
  • Verbose mode
  • Dry run mode
  • Hash gneration mode
  • Sync mode
  • Generate directory file’s JSON hashmap
  • Flexible argment input
  • Better error handling
  • Detailed documentation
  • Generate command for ‘scp’ tool —default
  • Multi flag support
  • Async multiple action support

Then I build ‘filesync’

‘filysync’ is a CLI(Command line Interface) helper tool to help you keep your files synced between source and destination while preserving directory structure.

This tool also generates file Hashmap to keep track file changes even when there is no ‘git’ installed on machine and also machines that doesn’t have ‘rsync’ access or installed on both sides. Meaning you can keep track of file’s changes and sync them between machines efficiently.

This tool comes with no official guarantee for this version. May cause errors. Update for patch.

Enough for the intro, now you can download with below command and I’ll post some images below to show it works. Don’t forget to try ‘filesync —help’ to know more.