
Security News
Node.js Moves Toward Stable TypeScript Support with Amaro 1.0
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
circuit-json-to-bom-csv
Advanced tools
A utility to convert Circuit JSON to Bill of Materials (BOM) CSV format.
A utility to convert Circuit JSON to Bill of Materials (BOM) CSV format.
You can install this package using npm:
npm install circuit-json-to-bom-csv
Or using yarn:
yarn add circuit-json-to-bom-csv
This package provides two main functions: convertCircuitJsonToBomRows
and convertBomRowsToCsv
.
import { convertCircuitJsonToBomRows } from "circuit-json-to-bom-csv"
import type { AnyCircuitElement } from "circuit-json"
const circuitJson: AnyCircuitElement[] = [
// Your circuit JSON data here
]
const bomRows = await convertCircuitJsonToBomRows({ circuitJson })
console.log(bomRows)
import { convertBomRowsToCsv } from "circuit-json-to-bom-csv"
const bomRows = [
{
designator: "R1",
comment: "1k",
value: "1k",
footprint: "0805",
supplier_part_number_columns: {
"JLCPCB Part #": "C17513",
},
},
// More BOM rows...
]
const csv = convertBomRowsToCsv(bomRows)
console.log(csv)
convertCircuitJsonToBomRows(options: { circuitJson: AnyCircuitElement[], resolvePart?: Function }): Promise<BomRow[]>
Converts Circuit JSON to BOM rows.
circuitJson
: An array of Circuit JSON elements.resolvePart
(optional): A function to resolve additional part information.Returns a Promise that resolves to an array of BOM rows.
convertBomRowsToCsv(bomRows: BomRow[]): string
Converts BOM rows to a CSV string.
bomRows
: An array of BOM row objects.Returns a CSV string representation of the BOM.
This project is licensed under the MIT License.
FAQs
A utility to convert Circuit JSON to Bill of Materials (BOM) CSV format.
The npm package circuit-json-to-bom-csv receives a total of 4,397 weekly downloads. As such, circuit-json-to-bom-csv popularity was classified as popular.
We found that circuit-json-to-bom-csv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Amaro 1.0 lays the groundwork for stable TypeScript support in Node.js, bringing official .ts loading closer to reality.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.