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 🙏

© 2024 – Pkg Stats / Ryan Hefner

bisync

v0.9.9

Published

Bidirectional Directory Synchronization for Source Code Repositories

Downloads

6

Readme

BiSync

Bidirectional Directory Synchronization for Source Repositories

Bisync allows directories of shared code to be synchronized in both directions. The specific use case is a mono-repo with shared code. This can be a less troublesome solution than symlinks which are not universally supported with build tools or require careful configuration.

Usage

npm version

npm install bisync --save-dev

If you have a mono-repo with many subdirectories each of which has it's own npm folder and package.json install this at the root even if it is the only node module at the root.

Configuration

Create a bisync.json in the route directory

[
    [
        "./subproj1/src/common",
        "./subproj2/src/common",
    ],
    [
        "./subproj1/node_modules/mymodule",
        "../mymodule/build"
    ]
]

The JSON file is an array of directory groups. Each group is simply an array of directories to be synchronized within that group. Synchronization occurs recursively. Although designed for directories, individual files may be synchronized as well.

The first group in the example shows two subprojects in a mono-repo, each of which has directory called common for common source files. The second one shows a node_module being developed and project that consumes it that is to be kept up-to-date as the node_module is changed and rebuilt.

Background Processing

Bisync runs as a daemon on port 3111. It can handle multiple configuration files from multiple projects at the same time. You simply add and remove configuration files as needed. If bisync detects that the project is removed (because the configuration file is deleted) it will stop synchronizing directories specified in that configuration file.

By naming your configuration file bisync.json, the synchronization will be started automatically when bisync is installed so team members working on the project don't need to explicitly start bisync.

Commands

npx bisync watch=<config-file>        to add a configuration file to be watched
npx bisync uwatch=<config-file>       to stop watching configuration file
npx bisync stop                       to stop the daemon 
npx bisync start                      to restart the daemon (with all previous watches)
npx bisync status                     show status of daemon and which config files are in effect
npx bisync install                    prepare your system to automatically start bisync on login  

Automating its use in a repo

Bisync is automatically started upon installation and looks for a config called bisync.json. The package.json referring to bisync in its devDependencies should both be in the root of the monorepo.

However if your system is shutdown and restarted, the daemon won't automatically run unless you install a script to start upon login. This command can be used to insert an '''npx bisync start``` in the appropriate folder based on your system (Macos, Windows).

npx bisync install
  • Under windows it will add a start_bisync.bat file to C:\Users<user-id>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
  • In osx it will create ~/start_bisync.command to ~/ and you must then go to Preferences > Users & Groups and select your user name. Then you can add this command file to login items

Do not try and start bisync at system startup since it needs to be run as the user that owns the files to be synced. It is not designed to be run as root.

Logging

If needed you can enable logging

npx bisync log=<logfile>

Limitations

bisync is intended for source code repositories. It is not a general purpose synchronization mechanism. Among it's limitations are:

  • Not handling symlinks
  • Not handling file attributes such as read-only or executable
  • Not handling ownership of files