https://github.com/nachotoast/220-tools
Various graphing, searching, and other computational tools for UoA CompSci220.
https://github.com/nachotoast/220-tools
nodejs typescript
Last synced: 3 months ago
JSON representation
Various graphing, searching, and other computational tools for UoA CompSci220.
- Host: GitHub
- URL: https://github.com/nachotoast/220-tools
- Owner: NachoToast
- License: mit
- Created: 2022-05-11T01:31:36.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T14:27:06.000Z (about 4 years ago)
- Last Synced: 2025-04-06T10:48:04.024Z (over 1 year ago)
- Topics: nodejs, typescript
- Language: TypeScript
- Homepage: https://220.nachotoast.com
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# 220 Tools
Various graphing, searching, and other computational tools for UoA CompSci220.
- Repository structure inspired by [ibrahima92](https://github.com/ibrahima92/pokedex-typescript) and [juristr](https://github.com/juristr/webpack-typescript-starter)'s examples.
## Installation
You can set up your own version of the site as follows:
1. Clone [this repository](https://github.com/NachoToast/220-tools).
2. Make sure you have [NodeJS](https://nodejs.org/en/) installed.
3. Download dependencies using npm or [yarn](https://yarnpkg.com/):
```sh
yarn # yarn
npm install # npm
```
To work in hot-reload mode, I recommend using the [live server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) extension for VSCode. Simply 'Go Live' and run the `dev` script:
```sh
yarn dev # yarn
npm run dev # npm
```