Coder Social home page Coder Social logo

How to 'merge' toml files about iarna-toml HOT 2 CLOSED

iarna avatar iarna commented on August 29, 2024
How to 'merge' toml files

from iarna-toml.

Comments (2)

iarna avatar iarna commented on August 29, 2024

@akkumar So the result of TOML.parse is just a JS object, so the usual approach would be to combine them with JS tools. Exactly what that looks like depends on your needs:

So you might go with the most simple option, with object composition:

const default = TOML.parse(default)
const prod = TOML.parse(prod)
const config = {...default, ...prod}

Or use a module for deep merging: (not an endorsement of this particular module, it's just what came up when searching)

const objectMerge = require('object-merge')
const default = TOML.parse(default)
const prod = TOML.parse(prod)
const config = objectMerge(default , prod)

Both of these methods can merge as many objects together as you like.

from iarna-toml.

iarna avatar iarna commented on August 29, 2024

Something that might be cool would be a config library built on top of this library that provides composition of objects like this. Maybe something like rc but built on TOML instead of ini files.

from iarna-toml.

Related Issues (20)

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.