Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/it1shka/material-visualization
Project made for Sofixit 'Code Wars' competition
https://github.com/it1shka/material-visualization
Last synced: about 1 month ago
JSON representation
Project made for Sofixit 'Code Wars' competition
- Host: GitHub
- URL: https://github.com/it1shka/material-visualization
- Owner: it1shka
- Created: 2023-10-20T00:03:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T12:55:32.000Z (about 1 year ago)
- Last Synced: 2023-10-21T13:31:24.292Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://it1shka.github.io/material-visualization/
- Size: 778 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Project made for Sofixit 'Code Wars' competition
### Check it online: [GitHub Pages](https://it1shka.github.io/material-visualization/)
The project is written for demonstrating purposes of
my algorithmIt's written using technologies listed below:
1. TypeScript since it's better than JS
2. React for building reactive UI
3. Styled Components for embedding CSS into TS files
4. Recoil for state managementIn order to run project locally, you need to
do the following steps:
1. Clone the repo from my GitHub
2. __npm install__ all the packages
3. __npm start__ to run application locally (probably on port :3000)
4. optionally, you can test the function containing algorithm using __npm test__So all the commands look that way:
```shell
# shell script (works on Linux and MacOS)
git clone https://github.com/it1shka/material-visualization
cd material-visualization
npm install
npm start
# optionally, if you wanna test it:
npm test
```