erratic-gate/README.md

21 lines
1.1 KiB
Markdown
Raw Normal View History

2019-05-22 21:44:37 +02:00
# logicGateSimulator2
2019-07-11 20:05:33 +02:00
2019-05-22 21:44:37 +02:00
a better version of my logic gate simulator
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
To run locally clone this repo, and then run: `npm install`
to install all dependenices, `npm run dev` to start the development server or `npm run build` to bundle it.
2019-06-03 21:35:47 +02:00
This project wouldnt have been possible without the follownig libraries:
2019-07-11 20:05:33 +02:00
- [typescript](https://github.com/microsoft/TypeScript) and [sass](https://github.com/sass/sass)
- [lit-html](https://github.com/Polymer/lit-html) , [lit-rx](https://github.com/Dabolus/lit-rx) and [rxjs](https://github.com/ReactiveX/rxjs)
- [material components for the web](https://github.com/material-components/material-components-web)
- [webpack](https://github.com/webpack/webpack)
- [gh-pages](https://github.com/tschaub/gh-pages)
- [eix-js](https://github.com/eix-js)
2019-06-03 21:35:47 +02:00
2019-07-07 16:18:48 +02:00
I used lit-html, lit-rx and rxjs mainly for the rendering, MCW for the styling, webpack for bundling, gh-pages for deploying and eix-js (a game engine me and a friend are working on) for input handling and common decorators.