Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

write-ini-file

zkochan4.2kMIT4.0.1TypeScript support: included

Stringify and write ini to a file atomically

write, ini, stringify, file, fs, graceful, atomic, atomically

readme

write-ini-file

Stringify and write ini to a file atomically

npm version

Installation

<npm|yarn|pnpm> add write-ini-file

Usage

const { writeIniFile } = require('write-ini-file')

writeIniFile('foo.ini', {foo: true}).then(() => {
    console.log('done')
})

API

writeIniFile(filepath, data, [options])

Returns a promise.

writeIniFileSync(filepath, data, [options])

options

section

Read more at the ini repo.

mode

Type: number Default 438 (0666 in octal)

Mode used when writing the file.

  • read-ini-file - Read and parse an ini file
  • ini - An ini parser/serializer in JavaScript

License

MIT © Zoltan Kochan