lnfs alternatives and similar modules
Based on the "Filesystem" category.
Alternatively, view lnfs alternatives based on common mentions on social networks and blogs.
-
fs-extra
Node.js: extra methods for the fs object like copy(), remove(), mkdirs() -
proper-lockfile
An inter-process and inter-machine lockfile utility that works on a local or network file system. -
istextorbinary
Determine if a filename and/or buffer is text or binary. Smarter detection than the other solutions. -
fs-write-stream-atomic
Like `fs.createWriteStream(...)`, but atomic.
A Non-Cloud Alternative to Google Forms that has it all.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of lnfs or a related project?
Popular Comparisons
README
lnfs 
Safely force create symlinks
Install
$ npm install lnfs
Usage
const lnfs = require('lnfs');
lnfs('foo.txt', 'bar.txt').then(() => {
console.log('Symlink successfully created!');
});
API
lnfs(src, dest, [type])
Returns a Promise
with the path to the symlink.
src
Type: string
Path to source file.
dest
Type: string
Path to destination.
type
Type: string
Default: file
Can be set to dir
, file
, or junction
and is only available on Windows (ignored on other platforms).
Related
- lnfs-cli - CLI for this module
License
MIT © Kevin Mårtensson
*Note that all licence references and agreements mentioned in the lnfs README section above
are relevant to that project's source code only.