Skip to content

SeeeD/mk-symlink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mk-symlink

Create symbolic link (symlink)

Install

$ npm install mk-symlink

Usage

const mkSymlink = require('mk-symlink');

const sourcePath = '/dev/configurations';
const sourceFile = 'development.json';
const targetPath = '/dev/project/api';
const targetFile = 'config.json';

mkSymlink.make(targetPath, targetFile, sourcePath, sourceFile);

API

mkSymlink.make(destinationPath, destinationFilename, sourcePath, sourceFilename)

Creates a symbolic link by passing the path and filename of the source and target.

License

MIT © Stefan Riedinger

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published