New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@typinghare/wander

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typinghare/wander

A modern solution for addressing settings files conflict

latest
npmnpm
Version
2.0.0
Version published
Maintainers
0
Created
Source

Wander

This script addresses conflicts related to IDE settings folders. When collaborating on a project, team members often use the same IDE (e.g., VSCode, PyCharm, IntelliJ IDEA) but have different configurations. To avoid conflicts, we typically add the IDE settings directories (such as .vscode, .idea, and so on) to .gitignore. However, switching devices can result in losing these settings.

To resolve this issue, Wander provides a solution by allowing you to save your IDE settings in a dedicated directory within .wander/<git-email>. This directory, known as the user directory, stores each developer's IDE settings separately based on their Git email. When switching devices, you can easily restore your IDE settings from your user directory, ensuring a seamless transition.

Install

Ensure that you have installed Node.js, then run the following command:

sudo npm install -g @typinghare/wander

Check if Wander is installed successfully:

wander --version

Usage

# Display users and saved files/directories 
wander list

# Save the target file/directory to Wander storage
wander save <target1> [<target2> ...]

# Restore the target file/directory from Wander storage
wander restore [<target1> <target2> ...]

# Note that if you do not specify target files to restore, Wander will restore all saved files to target files
wander restore

The following is a typical example:

# Save the .idea to the Wander storage
# It is saved to .wander/<you-git-email>/.idea.svd
# Where the extension ".svd" stands for "saved"
wander save .idea

# Restore the .idea files (and other saved files)
wander restore

# If you saved other files and you just want to restore .idea, run
wander restore .idea

Keywords

project settings

FAQs

Package last updated on 05 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts