Socket
Socket
Sign inDemoInstall

chuck-steve-package-folder

Package Overview
Dependencies
17
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chuck-steve-package-folder

A wrapper for performing actions on the package folder in [`steve`](https://www.github.com/brycekbargar/steve) packages.


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
928 kB
Created
Weekly downloads
 

Readme

Source

Steve Package Folder

A wrapper for performing actions on the package folder in steve packages.

Usage

Requiring this package returns a PackageFolder class. The class has the following methods:

.constructor()

Takes a single string containing the absolute folder path

.isValid()

Returns a Promise that resolves to true if the folder can be written to and read from

#clear()

Clears the folder
Returns a Promise

#add(filePath, index)

Copies the file located at the absolute path into the folder prefixed with the index in 000_ format
Returns a Promise

Example

const PackageFolder = require('chuck-steve-package-folder');
let packageFolder = new PackageFolder('some folder path');

packageFolder
  .isValid()
  .then((isValid) => {
    if(isValid) {
      return packageFolder
        .clear()
        .then(() => packageFolder.add('some file path', 1));
    }
  })
  .catch(console.error);

FAQs

Last updated on 13 Dec 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc