1. majo
A minimal module to manipulate files.
majo
Package: majo
Created by: egoist
Last modified: Sun, 19 Jun 2022 15:30:52 GMT
Version: 0.10.1
License: MIT
Downloads: 45,333
Repository: https://github.com/egoist/majo

Install

npm install majo
yarn add majo

majo

Art by でんでん COMIC1・こ 24b

NPM version NPM downloads CircleCI donate

Introduction

You can use majo to manipulate files like a pro, with a simple API whose core is only ≈ 150 SLOC.

Install

 yarn add majo

Usage

 const { majo } = require('majo')

const stream = majo()

// Given that you have js/app.js js/index.js
stream
  .source('js/**')
  .use(ignoreSomeFiles)
  .dest('dist')
  .then(() => {
    // Now you got filtered files
  })

function ignoreSomeFiles(stream) {
  for (const filename in stream.files) {
    const content = stream.fileContents(filename)
    // Remove it if content has specific string
    if (/some-string/.test(content)) {
      delete stream.files[filename]
    }
  }
}

Documentation

https://majo.egoist.sh

Used By

  • SAO: ⚔️ Futuristic scaffolding tool.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

majo © egoist, Released under the MIT License.

Authored and maintained by egoist with help from contributors (list).

egoist.moe · GitHub @egoist · Twitter @_egoistlily

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code