Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
circuit-json-to-pnp-csv
Advanced tools
Convert Circuit JSON into a Pick'n'Place CSV
npm install circuit-json-to-pnp-csv
or
bun add circuit-json-to-pnp-csv
This library provides two main functions:
convertCircuitJsonToPickAndPlaceRows
: Converts Circuit JSON elements to an array of Pick'n'Place rows.convertCircuitJsonToPickAndPlaceCsv
: Converts Circuit JSON elements directly to a CSV string.import {
convertCircuitJsonToPickAndPlaceCsv,
convertCircuitJsonToPickAndPlaceRows,
} from "circuit-json-to-pnp-csv"
import type { AnyCircuitElement } from "circuit-json"
const circuitJson: AnyCircuitElement[] = [
{
type: "pcb_component",
pcb_component_id: "R1",
center: { x: 10, y: 20 },
layer: "top",
rotation: 0,
width: 5,
height: 2,
source_component_id: "resistor1",
},
// ... more components
]
// Get Pick'n'Place rows
const rows = convertCircuitJsonToPickAndPlaceRows(circuitSoup)
console.log(rows)
// Get Pick'n'Place CSV
const csv = convertCircuitJsonToPickAndPlaceCsv(circuitSoup)
console.log(csv)
convertCircuitJsonToPickAndPlaceRows(soup: AnyCircuitElement[], opts?: { flip_y_axis?: boolean }): PickAndPlaceRow[]
Converts Circuit JSON elements to an array of Pick'n'Place rows.
circuitJson
: An array of Circuit JSON elements.opts
: Optional configuration object.
flip_y_axis
: If true, flips the Y-axis values. Default is false
.Returns an array of PickAndPlaceRow
objects.
convertCircuitJsonToPickAndPlaceCsv(soup: AnyCircuitElement[]): string
Converts Circuit JSON elements directly to a CSV string.
circuitJson
: An array of Circuit JSON elements.Returns a string containing the CSV data.
This project uses Bun's built-in test runner. To run the tests, use the following command:
bun test
FAQs
Convert Circuit JSON into a Pick'n'Place CSV
The npm package circuit-json-to-pnp-csv receives a total of 1,196 weekly downloads. As such, circuit-json-to-pnp-csv popularity was classified as popular.
We found that circuit-json-to-pnp-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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.