Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelesko/jcon
JCON: JSON for Configuration
https://github.com/joelesko/jcon
configuration jcon json
Last synced: 9 days ago
JSON representation
JCON: JSON for Configuration
- Host: GitHub
- URL: https://github.com/joelesko/jcon
- Owner: joelesko
- License: mit
- Created: 2018-11-25T03:35:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-27T18:53:44.000Z (about 6 years ago)
- Last Synced: 2024-11-08T11:18:48.004Z (2 months ago)
- Topics: configuration, jcon, json
- Homepage: https://jconformat.org
- Size: 4.88 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JCON: JSON for Configuration
JCON is a configuration format that keeps the familiarity of JSON, but requires less syntax -- making it easier to read and write.
[JCON Home Page](https://jconformat.org)
## At a Glance
```
{
// this is a comment
myKey: {key: this is a string
boolean: true
number: 123list: [
this is item 1
this is item 2
]
multiline: `
This is a
multiline
string
`
}
}```
## Features
- No quotation marks for strings or keys.
- Separation by line breaks, not commas.
- Support for line comments.
- Support for multi-line strings.
- Small footprint (~ 7k). No dependencies.## Implementations
- [JavaScript](https://github.com/joelesko/jcon-js)
- PHP (coming soon)