{"id":31391755,"url":"https://github.com/tscircuit/circuit-json-to-readable-netlist","last_synced_at":"2025-09-29T02:57:30.338Z","repository":{"id":270148808,"uuid":"909447843","full_name":"tscircuit/circuit-json-to-readable-netlist","owner":"tscircuit","description":"Convert Circuit JSON into a readable netlist suitable for input to AI","archived":false,"fork":false,"pushed_at":"2025-06-13T18:16:53.000Z","size":141,"stargazers_count":1,"open_issues_count":2,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-16T04:50:30.406Z","etag":null,"topics":["netlist","tscircuit"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tscircuit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-28T18:23:58.000Z","updated_at":"2025-06-13T18:16:56.000Z","dependencies_parsed_at":"2024-12-28T20:26:41.360Z","dependency_job_id":"745c6383-8024-4a5d-866e-0f04947318e6","html_url":"https://github.com/tscircuit/circuit-json-to-readable-netlist","commit_stats":null,"previous_names":["tscircuit/circuit-json-to-readable-netlist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tscircuit/circuit-json-to-readable-netlist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tscircuit%2Fcircuit-json-to-readable-netlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tscircuit%2Fcircuit-json-to-readable-netlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tscircuit%2Fcircuit-json-to-readable-netlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tscircuit%2Fcircuit-json-to-readable-netlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tscircuit","download_url":"https://codeload.github.com/tscircuit/circuit-json-to-readable-netlist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tscircuit%2Fcircuit-json-to-readable-netlist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277458666,"owners_count":25821319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-29T02:00:09.175Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["netlist","tscircuit"],"created_at":"2025-09-29T02:57:28.114Z","updated_at":"2025-09-29T02:57:30.333Z","avatar_url":"https://github.com/tscircuit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# circuit-json-to-readable-netlist\n\nConvert Circuit JSON into a readable netlist suitable for input to AI\n\n[![npm version](https://badge.fury.io/js/circuit-json-to-readable-netlist.svg)](https://badge.fury.io/js/circuit-json-to-readable-netlist) [![GitHub](https://img.shields.io/github/stars/tscircuit/circuit-json-to-readable-netlist?style=social)](https://github.com/tscircuit/circuit-json-to-readable-netlist) ⋅ [tscircuit](https://github.com/tscircuit/tscircuit) ⋅ [discord](https://tscircuit.com/join) ⋅ [use tscircuit online](https://tscircuit.com)\n\n## Installation\n\n```bash\nbun add circuit-json-to-readable-netlist\n```\n\n## Usage\n\n### TypeScript\n\n```typescript\nimport { convertCircuitJsonToReadableNetlist } from 'circuit-json-to-readable-netlist'\nimport type { CircuitJson } from 'circuit-json'\n\nconst circuitJson: CircuitJson = // ... your circuit JSON\nconst readableNetlist = convertCircuitJsonToReadableNetlist(circuitJson)\nconsole.log(readableNetlist)\n```\n\n## Example Readable Netlist\n\n```txt\nNET: +3V3\n  - U1 Pin8            (ESP-12F VDD3.3)\n  - R1 Pin1            (Pull-up for RST)\n  - R2 Pin1            (Pull-up for EN)\n  - R3 Pin1            (Pull-up for GPIO0)\n  - R4 Pin1            (Pull-up for GPIO2)\n  - C1 Pin1            (Decoupling 10 µF)\n  - C2 Pin1            (Decoupling 0.1 µF)\n\nNET: GND\n  - U1 Pin9            (ESP-12F GND)\n  - C1 Pin2            (Decoupling return)\n  - C2 Pin2            (Decoupling return)\n  - S1 Pin2            (Reset switch to ground)\n  - R5 Pin2            (Pull-down for GPIO15)\n  - J1 Pin1            (UART header ground, if applicable)\n\nNET: RST\n  - U1 Pin1            (ESP-12F RST)\n  - R1 Pin2            (10 kΩ to +3V3)\n  - S1 Pin1            (Momentary switch to GND)\n\nNET: EN\n  - U1 Pin3            (ESP-12F EN / CH_PD)\n  - R2 Pin2            (10 kΩ to +3V3)\n\nNET: GPIO0\n  - U1 Pin12           (GPIO0 / boot mode select)\n  - R3 Pin2            (10 kΩ to +3V3)\n  - S2 Pin1            (Optional switch/jumper to GND for flashing)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftscircuit%2Fcircuit-json-to-readable-netlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftscircuit%2Fcircuit-json-to-readable-netlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftscircuit%2Fcircuit-json-to-readable-netlist/lists"}