write-ini-file

Stringify and write ini to a file atomically

Usage no npm install needed!

<script type="module">
  import writeIniFile from 'https://cdn.skypack.dev/write-ini-file';
</script>

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.

writeIniFile.sync(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.

Related

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

License

MIT © Zoltan Kochan