Socket
Socket
Sign inDemoInstall

combinify

Package Overview
Dependencies
11
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    combinify

Merge multiple large files that taking long time into one file!


Version published
Maintainers
1
Created

Readme

Source

combinify

combinify allows you merge multiple files into one file in order. It's a promise version that applies to merging large files that taking long time.

Install

npm i combinify
yarn add combinify

Usage

import combinify from 'combinify';

const destination = __dirname + '/result.txt';

const sourceList = [__dirname + '/file.txt', __dirname + '/file2.txt'];

### Promise

// status: true or false
const status = await combinify(sourceList, destination);
// or
combinify(sourceList, destination).then((status) => {
  // next
});

That is amazing combinify ! :joy:


MIT License

Keywords

FAQs

Last updated on 16 Feb 2022

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