Socket
Socket
Sign inDemoInstall

@absolunet/fss

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@absolunet/fss

fs / fs-extra sync wrapper


Version published
Weekly downloads
133
decreased by-1.48%
Maintainers
2
Weekly downloads
 
Created
Source

@absolunet/fss

NPM version Travis build Dependencies Dev dependencies

fs / fs-extra sync wrapper

Install

$ npm install @absolunet/fss

Usage

const fss = require('@absolunet/fss');

fss.move('/path1/path2/path3', '/path4');

API

copy(src, dest, [options])

Maps fsExtra.copySync.

ensureDir(dir)

Maps fsExtra.ensureDirSync.

exists(path)

Maps fs.existsSync.

move(src, dest, [options])

Simulate a mv(1) via a fsExtra.copySync and a fsExtra.removeSync.

src

Required
Type: string

Path of dir/file to move.

dest

Required
Type: string

Path of destination.

options

Type: Object

fsExtra.copySync options.

readdir(path[, options])

Maps fs.readdirSync.

readFile(path[, options])

Maps fs.readFileSync.

realpath(path[, options])

Maps fs.realpathSync.

remove(path)

Maps fsExtra.removeSync.

symlink(target, path[, type])

Maps fs.symlinkSync.

writeFile(file, data[, options])

Maps fs.writeFileSync.

License

MIT © Absolunet

FAQs

Package last updated on 26 Sep 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc