Custom Extension (node) - Binary Read file to text output

A very simple extension which i had cause to need so thought i would share it.

Introduction

This node extension binary reads a file and retruns it's contents as a string. I developed this as a result of a need to reads text files and manipulate their content.

The NPM

How to Install

Module Location

The Interface

The interface is simple, simply point it to your file.
Selecting Debug enables console log messages for the extension.

Output

The file is read and output raw as text

{
file2text: {
status: 200,
content: "this is a text document output called test.txt
for demo purposes.
Happly Wapplering"
}
}

As always, questions to me please

5 Likes