copy-symlink

copy symlink, because fs.copyFile can't

MIT 2 个版本
安装
npm install copy-symlink
yarn add copy-symlink
pnpm add copy-symlink
bun add copy-symlink
README

Copy Symlink License NPM version Dependency Status Build Status Coverage Status

Copy symlink because fs.copyFile can't.

When you use fs.copyFile it gets realpath and then copies content of a source file from realpath.

copy-symlink also gets realpath but then creates symbolic link on a new location.

Install

npm i copy-symlink

API

copySymlink(src, dest)

It is a promise so you can use it this way:

const copySymlink = require('copy-symlink');
const src = './symlink';
const dst = './symlink-copy';

copySymlink()
    .then(console.log)
    .catch(console.error);

Or using async-await

const copySymlink = require('copy-symlink');

async () => {
   await copySymlink();
}();

License

MIT

版本列表
2.0.0 2020-09-25
1.0.0 2018-09-26