An open API service indexing awesome lists of open source software.

https://github.com/lluchs/c4ini

Clonk ini parsing for node.js
https://github.com/lluchs/c4ini

clonk openclonk

Last synced: 4 months ago
JSON representation

Clonk ini parsing for node.js

Awesome Lists containing this project

README

          

C4INI
=====

Parses ini files as used by Clonk masterservers. In contrast to
standard ini files, these can have nested sections.
See test/files for some example files.

c4ini will take an ini file string and convert it to a
JavaScript object.

Usage
-----

```javascript
var fs = require('fs')
var c4ini = require('c4ini')

var iniString = fs.readFileSync('file.ini')
// There are no options.
var result = c4ini(iniString)
```