Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matiaskorhonen/online-toml-to-json
A simple tool for converting TOML to JSON.
https://github.com/matiaskorhonen/online-toml-to-json
Last synced: about 2 months ago
JSON representation
A simple tool for converting TOML to JSON.
- Host: GitHub
- URL: https://github.com/matiaskorhonen/online-toml-to-json
- Owner: matiaskorhonen
- License: mit
- Created: 2013-04-03T20:24:13.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-09-28T09:25:40.000Z (3 months ago)
- Last Synced: 2024-10-31T06:41:54.644Z (about 2 months ago)
- Language: Svelte
- Homepage: toml-to-json.matiaskorhonen.fi
- Size: 278 KB
- Stars: 15
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Online TOML to JSON converter
A simple tool for converting [TOML][toml] to JSON, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
> **TOML** (Tom's Obvious, Minimal Language) aims to be a minimal configuration file format that's easy to read due to obvious semantics. TOML is designed to map unambiguously to a hash table. TOML should be easy to parse into data structures in a wide variety of languages.
This might be pretty rough and certainly isn't the prettiest site out there but it should largely work.
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.