@tscircuit/core
v0.0.207
Published
[tscircuit](https://github.com/tscircuit/tscircuit) · [Development Guide](./docs/DEVELOPMENT.md)
Downloads
17,722
Readme
@tscircuit/core
A rewrite of tscircuit builder with a ThreeJS/react-three-like API and architecture.
Usage
import { Board, Resistor, Led, Trace, Project } from "@tscircuit/core"
const project = new Project()
const board = new Board({
width: "10mm",
height: "10mm",
})
project.add(board)
const R1 = new Resistor({ resistance: "10k", footprint: "0402" })
board.add(R1)
// You can also add elements with React
board.add(<led footprint="0402" />)
const trace = new Trace({ width: "0.2mm" })
trace.connect(R1.output, LED1.anode)
board.add(trace)
project.getJson() // [{ type: "board", ...}, { type: "resistor", ...}, ...]