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

@nexrender/action-link

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexrender/action-link

Create symbolic links between files or directories.

latest
npmnpm
Version
1.59.1
Version published
Maintainers
1
Created
Source

Create symbolic links between files or directories.

Information

  • input required argument, source path for the symbolic link, can be either relative or absolute path
  • output required argument, destination path where the symbolic link will be created, can be either relative or absolute path
  • type optional argument, type of symbolic link to create:
    • dir - Create a directory symbolic link (default)
    • file - Create a file symbolic link
    • junction - Create a directory junction (Windows only)

The action will:

  • Create any necessary parent directories for the output path
  • Remove any existing symbolic link at the output path
  • Create a new symbolic link from input to output

Note: Creating symbolic links may require elevated permissions on some systems.

Usage

{
    "actions": {
        "prerender": [
            {
                "module": "@nexrender/action-link",
                "input": "source/large-file.mp4",
                "output": "assets/linked-file.mp4",
                "type": "file"
            }
        ]
    }
}

License

Please refer to the LICENSE file for more information. Unlike the main nexrender project, this plugin is licensed under the AGPL-3.0 license.

FAQs

Package last updated on 01 Dec 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