read-file-utils

1.1.1 • Public • Published

Commitizen friendlyConventional Commits

read-file-utils

Utilities for reading and manipulating text files using javascript

List of functions

1 getLineByBegin();

How to use

getLineByBegin()

getLineByBegin(path-to-the-file, encoding, first-characteres-of-the-line)

This function search a text file and returns the first line that maths the keyword provided. it uses async/await syntax.
Example:

var fileUtils = require('read-file-utils');

async function showSomeString() {
    let file = './path-to-the-file.txt';
    let firstWords = 'my phrase starts here';

    let lineWanted = await fileUtils.getLineByBegin(file,'utf-8',firstWords);
    console.log(lineWanted);
}

showSomeString();

Package Sidebar

Install

npm i read-file-utils

Weekly Downloads

14

Version

1.1.1

License

Apache-2.0

Unpacked Size

15.1 kB

Total Files

5

Last publish

Collaborators

  • mateus.garcia