An open API service indexing awesome lists of open source software.

https://github.com/cho45/kicad-utils

KiCAD library / schematic / pcb parser and plotter written in TypeScript (JavaScript)
https://github.com/cho45/kicad-utils

electrical-engineering javascript kicad schematics typescript

Last synced: 3 months ago
JSON representation

KiCAD library / schematic / pcb parser and plotter written in TypeScript (JavaScript)

Awesome Lists containing this project

README

          

kicad-utils
========

KiCAD library / schematic / pcb parser and plotter written in TypeScript (JavaScript)

DEMO
====

- Library Viewer
- Schematic/PCB Viewer

Setup bookmarklet for github: https://cho45.stfuawsc.com/kicad-utils/static/ .

.sch to .svg/.png in command-line
=================================

```
npx kicad-utils sch2svg path/to/file.sch
```

or latest from github:

```
npx -p github:cho45/kicad-utils kicad-utils sch2svg
```

Development
===========

Edit .ts files.

## start foreman

```
npm install
./node_modules/.bin/nf start
```

## For only web assets (static/)

```
npm install
./node_modules/.bin/webpack --watch
```

## For only CUI assets (bin/)
```
npm install
tsc --watch
```