Coder Social home page Coder Social logo

gamtiq / makef Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 166 KB

Utilities to create files inside specified directory or copy files

License: MIT License

JavaScript 99.86% Shell 0.14%
utility create make produce file files directory subdirectory write output

makef's Introduction

makef

Utilities to create files inside specified directory or copy files.

Features:

  • Create synchronously one file or several files at once.
  • Any content for a file is automatically converted to string. JSON.stringify is used to convert objects or arrays.
  • It is possible to skip creating of some files by specifying false, null or undefined as content value.
  • Determine whether a file should be created and/or form a file content dynamically by using a function as value for the file.
  • Specify any correct path as a file name. The path will be resolved regarding current working directory. Any subdirectory will be automatically created.
  • Create a copy of another file by using copyFile.
// Create several files in current working directory
makef.createFile({
    // The following file will be created with empty content
    'a.txt': '',
    // The following file will be created in subdirectory b
    'b/c.log': 'some data',
    // The following file will not be created
    'd.file': false,
    // The object that is specified as content will be converted to JSON
    'file.json': {some: 'data'},
    // The following file will be copied
    'copy.data': makef.copyFile('../some/dir/source.file')
});

See more examples below.

Table of contents

Usage

Installation:

npm install makef

Next in a module:

const makef = require('makef');
const { createFile, copyFile } = makef;

Examples

Create one empty file:

createFile('.nojekyll');

or

createFile({'.nojekyll': ''});

or

createFile({'.nojekyll': true});

Create several files at once:

createFile({
    '.nojekyll': true,
    'LICENSE': 'Some license data here',
    'very/important/file.txt': 'very important data',
    'config.json': {
        a: 2,
        topics: ['home', 'docs'],
        url: 'http://some.server.net'
    },
    'subdir/another.log': makef.copyFile('./path/to/logs/data.log')
});

Skip creating some files by setting false/null value for them:

createFile({
    '.nojekyll': false,
    'a.txt': 'content',
    'some/dir/file.md': null
});

Specify directory where files should be created:

createFile(
    {
        '.nojekyll': '',
        'data.json': {
            a: 1,
            b: {
                c: 3
            }
        },
        'subdir/file.data': 123
    },
    {
        dir: '/path/to/some/dir'
    }
);

Form content for a file dynamically or skip creation by using a function:

const path = require('path');

function getContent(file, env) {
    return env.data.filter(env.filePath)
        ? env.data.getData(file)
        : null;
}

createFile(
    {
        'a.txt': getContent,
        'b.log': 'static data',
        'c.data': getContent,
        'some/dir/file.txt': getContent
    },
    {
        data: {
            filter: (file) => path.extname(file) === '.txt',
            getData: (file) => `content of ${file}`
        }
    }
);

Copy a file:

makef.copyFile(
    'source.txt',
    'data.txt',
    {
        sourceDir: './from/some/dir',
        dir: '../target/data/dir'
    }
);

See additional examples in tests.

API

createFile(fileSet, settings?): object

Create specified files.

Arguments:

  • fileSet: object | string - Name of empty file or set of files that should be created.

    If a string is passed it is treated as name of the only empty file that should be created. When an object is passed its fields are used as file names and field values determine contents for corresponding files.

    When a function is specified as field value it will be called to get content for the file. The following parameters are passed into a function:

    • fileName: string - name of file that should be created as specified in a field name of fileSet.
    • env: object - additional contextual data.
    • env.data: any - value of settings.data (see below).
    • env.dir: string - directory where file should be created; it is value of settings.dir (see below) or empty string.
    • env.dirPath: string - absolute path to directory where file should be created.
    • env.filePath: string - absolute path to file that should be created.
    • env.logger: object - An object having methods log (or info) and error that can be used for logging. See settings.logger below for details.

    A value returned from the function will be processed to form file content.

    Content values (specified as a field value or returned from a function) are treated in the following way:

    • false, null or undefined - means that the corresponding file should not be created.
    • true - means that the corresponding file should be created with empty content.
    • an object or an array - is converted to JSON that is used as file content.
    • any other value - is converted to string that is used as file content.
  • settings?: object - Operation settings.

  • settings.context?: object - Object that should be used as this when calling a function to get a file content.

  • settings.data?: any - Any data that should be passed to a function that is used to get a file content.

  • settings.dir?: string - Directory that will be used to resolve (form) absolute path for relative file names. I.e. it is base/target directory for created files. By default the current working directory is used.

  • settings.logger?: object - An object having methods log (or info) and error that should be used for logging. Pass false to disable logging. Skipping this option or passing any other falsy value (i.e. null, undefined, 0, etc) or true will cause to use console as logger.

Returns object representing creation result, or undefined when fileSet is not specified and no file is processed. Object fields are file names as specified in fileSet, a field value is absolute path of the corresponding file, or error object when the file is not created by some reason.

copyFile(sourceFile, destFile?, settings?): Function | void

Copy specified file.

Arguments:

  • sourceFile: string - Name/path of file that should be copied.
  • destFile?: string - Name/path of destination file that should be created. If the file is not set a partially applied function will be returned that can be used to copy source file several times by passing a destination file and settings as arguments.
  • settings?: object - Operation settings.
  • settings.dir?: string - Directory where destination file should be created. By default the current working directory is used.
  • settings.logger?: object - An object having methods log (or info) and error that should be used for logging. See the corresponding setting of createFile for details.
  • settings.sourceDir?: string - Directory where source file is located.

Returns a partially applied function when destFile is not specified.

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

License

Copyright (c) 2020 Denis Sikuler
Licensed under the MIT license.

makef's People

Contributors

gamtiq avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.