# join-json **Repository Path**: mirrors_wickedest/join-json ## Basic Information - **Project Name**: join-json - **Description**: Joins JSON objects/arrays in memory or from command-line - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-03-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # join-json Merges multiple JSON objects or arrays together. Can be used as node module or from command-line. ```bash npm install join-json ``` ## Node usage ```javascript const JoinJSON = require('join-json'); const joinjson = new JoinJSON(); joinjson.join([{a: 1}]); joinjson.join([{b: 2}]); console.log(joinjson.join([{c: 3}])); ``` ## Command-line usage ### Usage ``` Usage: join-retire [options] Options: -i, --include JSON file to include -o, --out The combined JSON file to write. If not specified, writes out stdout. -f, --force Forces overwrite of `output` if it exists -h, --help This usage ``` ### Example ```bash join-json -i a.json -i b.json -o out.json -f ``` ## License MIT