Socket
Book a DemoInstallSign in
Socket

chuck-steve-package-folder

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

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.

2.0.0
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 13 Dec 2015

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.