2019-07-25 13:09:47 +02:00
|
|
|
# Logic gate simulator
|
2019-07-11 20:05:33 +02:00
|
|
|
|
2019-07-25 13:09:47 +02:00
|
|
|
This is a logic gate simulator made for infoeducatie 2019.
|
|
|
|
|
|
|
|
## Getting started
|
2019-06-03 21:35:47 +02:00
|
|
|
|
2019-07-07 16:18:48 +02:00
|
|
|
Check out the [demo](https://mateiadrielrafael.github.io/logicGateSimulator/)
|
2019-07-11 20:05:33 +02:00
|
|
|
Or read the [docs](./docs/main.md) (work in progess)
|
2019-06-03 21:35:47 +02:00
|
|
|
|
2019-07-25 13:09:47 +02:00
|
|
|
## Features
|
|
|
|
|
|
|
|
- Simple & intuitive UI
|
|
|
|
- Multiple simulations support
|
|
|
|
- Integrated circuits
|
|
|
|
- Multiple language support: Romanian, English, German, Dutch, Spanish & more in the future
|
|
|
|
|
|
|
|
## Playing with the source
|
|
|
|
|
|
|
|
To run locally clone this repo, and then install all dependencies by rrunning:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm install
|
|
|
|
```
|
|
|
|
|
|
|
|
Start the development server by running:
|
2019-06-03 21:35:47 +02:00
|
|
|
|
2019-07-25 13:09:47 +02:00
|
|
|
```sh
|
|
|
|
npm run dev
|
|
|
|
```
|
2019-07-11 20:05:33 +02:00
|
|
|
|
2019-07-25 13:09:47 +02:00
|
|
|
Or bundle the source with:
|
2019-06-03 21:35:47 +02:00
|
|
|
|
2019-07-25 13:09:47 +02:00
|
|
|
```sh
|
|
|
|
npm run build
|
|
|
|
```
|