Giter VIP home page Giter VIP logo

wml's Introduction

Tangible symlinks

Wml listens to changes in some folder (using Watchman) and copies changed files into another folder.

Why?

Let's face it, sometimes symbolic links just aren't enough. Github has more than 10K issues with the words "support for symlinks" in them.

Two examples I've encountered so far were: React Native's packager lack of support for them and Webpack's inability to find linked modules dependencies (working around this has issues of its own). A lot of people resolve to working directly from the node_modules folder in these cases, but a. if your package is required by two projects on which you are working simultaneously, you're screwed, and b. it just feels wrong.

Wml makes use of Facebook's ultra-fast Watchman to watch for changes in your source folder and copy them (and only them) into your destination folder.

Wml is a CLI tool that works pretty much like ln -s. You first set up your links by using the wml add command and then run the wml service (wml start) to start listening. That's it!

Note that since Wml is based on Watchman it does not support symlinks. lol.

Install

npm install -g wml

Usage

# add the link to wml using `wml add <src> <dest>`
wml add ~/my-package ~/main-project/node_modules/my-package
# start watching all links added
wml start

Commands

add

wml add <src> <dest> (or wml a)

Adds a link.

wml will not start listening to changes until you start it by running wml start.

Each link is given an unique id, you can see all links and their ids by running wml list. Links are saved to src/links.json in your wml install directory, meaning that your configuration is specific to that wml install.

rm

wml rm <linkId>

Removes a link. Passing all as linkId removes all links.

start

wml start (or wml s)

Starts wml.

It first copies all watched files from source to destination folder and then waits for new changes to happen.

list

wml list (or wml ls)

Lists all links.

Shows each link's id, state and source/destination folders.

enable

wml enable [linkId] (or wml en)

Enables a link. Passing all as linkId enables all links.

If you don't specify a linkId wml will open in interactive mode.

disable

wml disable [linkId] (or wml d)

Disables a link. Passing all as linkId disabled all links.

If you don't specify a linkId wml will open in interactive mode.

Great for re-using old links without having to type them over and over again.

Miscellaneous

Ignored folders

When adding a new link Wml will try to detect if your source folder is a git repository or an npm package, it will then offer to ignore the ".git" and "node_modules" folders for you.

If you want to add more folders to your ignored folders first create a file named .watchmanconfig in your source folder, this file should contain Watchman's configuration for this folder. See example below to learn how populate it or check out the Watchman docs to learn more about Watchman configurations.

In the following example we are ignoring the ".git" and "node_modules" folders:

{
    "ignore_dirs": [
        ".git",
        "node_modules"
    ]
}

Contributing

See the Contributing page.

License

Copyright (c) 2016 Wix. Licensed under the MIT license.

wml's People

Contributors

3lok avatar davidjb avatar dleshem avatar dutzi avatar

Watchers

 avatar  avatar

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.