Code Monkey home page Code Monkey logo

rollup-plugin-toml's Introduction

Rollup Plugin for TOML

This Rollup plugin imports TOML files into your JavaScript code.

@iarna/toml is used to parse the TOML files. @iarna/toml (version 3.0.0) currently supports TOML 1.0.0-rc.1.

Installation

npm install @fbraem/rollup-plugin-toml

Usage

// rollup.config.js
import toml from '@fbraem/rollup-toml-plugin';

// Add toml to the plugins
export default {
  plugins: [
    toml()
  ]
};

Example

This TOML file

# This is a TOML document

title = 'TOML Example'

[owner]
name = "Franky Braem"
dob = 1969-03-09T10:00:00

[database]
enabled = true
ports = [ 8001, 8001, 8002 ]
data = [ ["delta", "phi"], [3.14] ]
temp_targets = { cpu = 79.5, case = 72.0 }

[servers]

[servers.alpha]
ip = "10.0.0.1"
role = "frontend"

[servers.beta]
ip = "10.0.0.2"
role = "backend"

will result in the following generated code

    export const title = "TOML Example";
    export const owner = {
    	name: "Franky Braem",
    	dob: new Date(-25711200000)
    };
    export const database = {
    	enabled: true,
    	ports: [
    		8001,
    		8001,
    		8002
    	],
    	data: [
    		[
    			"delta",
    			"phi"
    		],
    		[
    			3.14
    		]
    	],
    	temp_targets: {
    		cpu: 79.5,
    		"case": 72
    	}
    };
    export const servers = {
    	alpha: {
    		ip: "10.0.0.1",
    		role: "frontend"
    	},
    	beta: {
    		ip: "10.0.0.2",
    		role: "backend"
    	}
    };
    export default {
    	title,
    	owner,
    	database,
    	servers
    };

rollup-plugin-toml's People

Contributors

dependabot[bot] avatar fbraem avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.