1. stringify-package
stringifies npm-written json files
stringify-package
Package: stringify-package
Created by: npm
Last modified: Wed, 09 Aug 2023 16:57:36 GMT
Version: 1.0.1
License: ISC
Downloads: 3,498,614
Repository: https://github.com/npm/stringify-package

Install

npm install stringify-package
yarn add stringify-package

stringify-package npm version license Travis AppVeyor Coverage Status

stringify-package is a standalone
library for writing out package data as a JSON file. It is extracted from npm.

Install

$ npm install stringify-package

Table of Contents

Example

 const fs = require('fs')
const pkg = { /* ... */ }

fs.writeFile('package.json', stringifyPackage(pkg), 'utf8', cb(err) => {
    // ...
})

Features

  • Ensures consistent file indentation
    To match existing file indentation,
    detect-indent is recommended.

  • Ensures consistent newlines
    To match existing newline characters,
    detect-newline is recommended.

Contributing

The npm team enthusiastically welcomes contributions and project participation!
There's a bunch of things you can do if you want to contribute! The Contributor
Guide
has all the information you need for everything from
reporting bugs to contributing entire new features. Please don't hesitate to
jump in if you'd like to, or even ask us questions if something isn't clear.

API

> stringifyPackage(data, indent, newline) -> String

Arguments

  • data - the package data as an object to be stringified
  • indent - the number of spaces to use for each level of indentation (defaults to 2)
  • newline - the character(s) to be used as a line terminator

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