1.5.79 • Published 23 hours ago

@tscircuit/builder v1.5.79

Weekly downloads
-
License
MIT
Repository
github
Last release
23 hours ago

@tscircuit/builder

Docs · Github · tscircuit

TSCircuit Builder is a Typescript builder pattern for constructing schematic and PCB layouts. @tscircuit/builder is an internal module, use tscircuit tsx instead

TSCircuit TSX eventually renders to a builder. The builder will build TSCircuit Soup, a JSON output. Soup can be rendered to a webpage as either a schematic or PCB layout.

Why not go directly from TSX -> Schematic/PCB?

If you think about how React works, there's a layer between React and the rendered HTML image you see on your screen, that layer is the DOM. The DOM simplifies the amount of work React has to do. In the same way, the Builder simplifies the amount of work that the TSCircuit TSX have to do while providing a lot of flexibility for different renderers. It's like the DOM for Circuits.

Example

const projectBuilder = await createProjectBuilder()
  .addResistor((rb) =>
    rb
      .setSourceProperties({
        resistance: "10 ohm",
        name: "R1",
      })
      .setSchematicCenter(2, 1)
  )

const projectBuilderOutput = await projectBuilder.build()


/*
// Soup JSON, very verbose! Looks easy to render though!
[
  {
    ftype: 'simple_resistor',
    name: 'R1',
    resistance: '10 ohm',
    source_component_id: 'simple_resistor_0',
    type: 'source_component',
  },
  {
    center: {
      x: 2,
      y: 1,
    },
    rotation: 0,
    schematic_component_id: 'schematic_component_simple_resistor_0',
    size: {
      height: 0.3,
      width: 1,
    },
    source_component_id: 'simple_resistor_0',
    type: 'schematic_component',
  },
  ...
]

Installation

npm install --save @tscircuit/builder
1.5.78

1 day ago

1.5.79

23 hours ago

1.5.76

2 days ago

1.5.77

2 days ago

1.5.75

4 days ago

1.5.74

8 days ago

1.5.73

8 days ago

1.5.72

9 days ago

1.5.71

9 days ago

1.5.70

15 days ago

1.5.67

15 days ago

1.5.66

15 days ago

1.5.69

15 days ago

1.5.68

15 days ago

1.5.63

16 days ago

1.5.62

16 days ago

1.5.65

16 days ago

1.5.64

16 days ago

1.5.59

17 days ago

1.5.61

17 days ago

1.5.60

17 days ago

1.5.56

19 days ago

1.5.55

19 days ago

1.5.58

19 days ago

1.5.57

19 days ago

1.5.54

20 days ago

1.5.52

23 days ago

1.5.53

23 days ago

1.5.50

25 days ago

1.5.51

25 days ago

1.5.47

26 days ago

1.5.49

25 days ago

1.5.48

26 days ago

1.5.46

26 days ago

1.5.43

26 days ago

1.5.42

26 days ago

1.5.45

26 days ago

1.5.44

26 days ago

1.5.41

27 days ago

1.5.38

28 days ago

1.5.39

28 days ago

1.5.40

28 days ago

1.5.37

29 days ago

1.5.36

1 month ago

1.5.30

1 month ago

1.5.32

1 month ago

1.5.31

1 month ago

1.5.34

1 month ago

1.5.33

1 month ago

1.5.35

1 month ago

1.5.23

1 month ago

1.5.22

1 month ago

1.5.25

1 month ago

1.5.24

1 month ago

1.5.27

1 month ago

1.5.26

1 month ago

1.5.29

1 month ago

1.5.28

1 month ago

1.5.14

1 month ago

1.5.16

1 month ago

1.5.15

1 month ago

1.5.18

1 month ago

1.5.17

1 month ago

1.5.19

1 month ago

1.5.21

1 month ago

1.5.20

1 month ago

1.5.13

1 month ago

1.5.12

1 month ago

1.5.11

1 month ago

1.5.9

1 month ago

1.5.8

1 month ago

1.5.7

1 month ago

1.5.10

1 month ago

1.5.6

1 month ago

1.5.5

2 months ago

1.2.0

10 months ago

1.2.8

9 months ago

1.2.7

9 months ago

1.2.6

9 months ago

1.4.3

7 months ago

1.2.5

9 months ago

1.4.2

7 months ago

1.2.4

10 months ago

1.4.1

7 months ago

1.2.3

10 months ago

1.4.0

7 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.12

9 months ago

1.2.13

9 months ago

1.2.10

9 months ago

1.2.11

9 months ago

1.2.16

8 months ago

1.2.17

8 months ago

1.2.14

9 months ago

1.2.15

9 months ago

1.2.18

8 months ago

1.2.19

8 months ago

1.5.4

6 months ago

1.5.3

6 months ago

1.5.2

6 months ago

1.3.4

7 months ago

1.5.1

6 months ago

1.3.3

7 months ago

1.5.0

6 months ago

1.3.2

7 months ago

1.3.1

8 months ago

1.3.0

8 months ago

1.1.2

10 months ago

1.2.20

8 months ago

1.2.23

8 months ago

1.2.21

8 months ago

1.2.22

8 months ago

1.2.9

9 months ago

1.1.1

11 months ago

1.1.0

11 months ago

1.0.12

12 months ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.11

1 year ago

1.0.10

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

0.0.1

2 years ago