Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

json-to-txt

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-to-txt

Reads JSON data (Array of objects) and returns a string in a txt file format.

latest
Source
npmnpm
Version
2.1.1
Version published
Weekly downloads
74
-14.94%
Maintainers
1
Weekly downloads
 
Created
Source

json-to-txt

Reads JSON data (Array of objects) and returns a string in a txt file format.

Installation

npm i --save json-to-txt

Usage

json-to-txt support CommonJS.

In module system

Use filePath key to provide JSON data from file.

const jsonToTxt = require("json-to-txt");
const dataInString = jsonToTxt({ filePath: "./filePath.json" });

Use data key to provide JSON data from variable or directly.

const jsonToTxt = require("json-to-txt");
const dataInString = jsonToTxt({ data: someJSONData });

Sample input (json data) :

[
  {
    NAME: {FIRST_NAME: 'Debra', LAST_NAME: 'Burks'},
    NUMBER: '880012XXXX',
    EMAIL: 'debra.burks@yahoo.com',
    ADDRESS: '9273 Thome Ave., Orchard Park, NY - 14127'
  },
  {
    NAME: {FIRST_NAME: 'Kasha', LAST_NAME: 'Todd'},
    NUMBER: null,
    EMAIL: 'kasha.todd@yahoo.com',
    ADDRESS: '910, Vine Street, Campbell, CA - 95008'
  },
  {
    NAME: {FIRST_NAME: 'Tameka', LAST_NAME: 'Fisher'},
    NUMBER: '880111XXXX',
    EMAIL: 'tameka.fisher@yahoo.com',
    ADDRESS: '7693 Honey Creek St., Redondo Beach, CA - 90278'
  },
  {
    NAME: {FIRST_NAME: 'Daryl', LAST_NAME: 'Spence'},
    NUMBER: '990015XXXX',
    EMAIL: null,
    ADDRESS: '988 Pearl Lane!!! (Uniondale), NY - 11553'
  },
  {
    NAME: {FIRST_NAME: 'Charolette', LAST_NAME: 'Rice'},
    NUMBER: '720012XXXX',
    EMAIL: 'charolette.rice@msn.com',
    ADDRESS: '107 ~ River Dr. `Sacramento`, "CA"      95820'
  }
]

Sample output (txt data) :

NAME                                               NUMBER           EMAIL                         ADDRESS                                               
{ FIRST_NAME : Debra , LAST_NAME : Burks }         880012XXXX       debra.burks@yahoo.com         9273 Thome Ave., Orchard Park, NY - 14127           
{ FIRST_NAME : Kasha , LAST_NAME : Todd }          null             kasha.todd@yahoo.com          910, Vine Street, Campbell, CA - 95008              
{ FIRST_NAME : Tameka , LAST_NAME : Fisher }       880111XXXX       tameka.fisher@yahoo.com       7693 Honey Creek St., Redondo Beach, CA - 90278     
{ FIRST_NAME : Daryl , LAST_NAME : Spence }        990015XXXX       null                          988 Pearl Lane!!! (Uniondale), NY - 11553           
{ FIRST_NAME : Charolette , LAST_NAME : Rice }     720012XXXX       charolette.rice@msn.com       107 ~ River Dr. `Sacramento`, "CA"      95820       

Keywords

convertor

FAQs

Package last updated on 26 Aug 2020

Did you know?

Socket

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