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

linkme

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkme

Create symbolic links between local/global dependencies

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Linkme

A simple utility to create symbolic links to locally checked out dependencies.

Inspired by the functionality provided by npm link but for non npm or node managed projects where similar functionality is missing.

Currently only supports composer linking.

Linkme works in two parts, local and global linking/unlinking.

Global linking

A link is created from a global location <home dir>/.linkme/<dependency manager>/<cononical package name> to your project.

This creates a way of linking in to a locally checked out dependency.

Local linking

A link is created from the dependency managers directory (e.g. vendor for composer) to the global link of the specified dependency.

Installation

# Install the module globally
$ sudo npm -g install linkme

Usage

# cd to your dependency
$ cd /path/to/my-dependency

# Create a global link
$ linkme

# or remove the global link
$ linkme -u

# cd to your application where we wish to link to the dependency.
$ cd /path/to/my-app

# Create a link to your dependency within the application
$ linkme my-dependency

# or unlink the dependency from the application
$ linkme -u my-dependency

License: MIT

Author: Ash Brown

Keywords

composer

FAQs

Package last updated on 25 Jun 2017

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