1. sym
A small utility for creating Symbolic links.
sym
Package: sym
Created by: danielchatfield
Last modified: Mon, 27 Jun 2022 03:05:12 GMT
Version: 0.0.4
Downloads: 7
Repository: https://github.com/danielchatfield/sym

Install

npm install sym
yarn add sym

sym

A small utility for creating Symbolic/Junction links

Getting Started

sym requires node, if you don't have node then install that first.

Install the module with: npm install sym

Linking a directory

This will create a symbolic link (junction link on Windows) called some-directory in some-other-place.

sym src

This command selects the current working directory as the source directory.

sym dest [folder]

This command selects the current working directory as the destination directory. If folder is specified then the link will be created with the specified name, otherwise the source folder name will be used.

sym link --src=/some/path --dest=/some/other/path

This command makes the link using the selected paths or you can specify the source and destination paths via their respective command line flags.

Credits

@satazor - a lot of code stolen from bower

License

Copyright (c) 2013 Daniel Chatfield. Licensed under the MIT license.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin