Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanpenner/ensure-symlink
used to implement a resilient "best-effort last write wins" symlink
https://github.com/stefanpenner/ensure-symlink
Last synced: 17 days ago
JSON representation
used to implement a resilient "best-effort last write wins" symlink
- Host: GitHub
- URL: https://github.com/stefanpenner/ensure-symlink
- Owner: stefanpenner
- Created: 2017-09-01T21:12:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T00:48:35.000Z (over 2 years ago)
- Last Synced: 2024-10-17T18:12:29.266Z (19 days ago)
- Language: JavaScript
- Size: 78.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ensure-symlink
[![Build Status](https://travis-ci.org/stefanpenner/ensure-symlink.svg?branch=master)](https://travis-ci.org/stefanpenner/ensure-symlink)
[![Build status](https://ci.appveyor.com/api/projects/status/am8b5krhnbgf7yvj/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/ensure-symlink/branch/master)used to implement a resilient "best-effort last write wins" symlink
## Usage
```sh
yarn add ensure-symlink# or
npm install ensure-symlink
``````js
const ensureSymlink = require('ensure-symlink');ensureSymlink(from, to);
```