https://github.com/tymate/advent-of-code-starter-javascript
https://github.com/tymate/advent-of-code-starter-javascript
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tymate/advent-of-code-starter-javascript
- Owner: tymate
- Created: 2021-12-01T00:05:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-02T05:06:21.000Z (about 2 years ago)
- Last Synced: 2024-05-02T19:17:55.399Z (about 2 years ago)
- Language: TypeScript
- Size: 4.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎄 Advent of code 2022
This is a starter for the advent of code, in TypeScript.
Fork it/clone it, and get started!
## Completion
Day
Completion
## How to

### 1. Install dependencies
```shell
yarn
```
### 2. Generate a day files
```shell
yarn generate
# or
yarn generate --day 01
# or
yarn generate --day 01 --extension typescript # javascript and typescript handled
```
### 3. Run a single day
```shell
yarn start --day 01
# or, to keep process open and listen to changes
yarn dev --day 01
```
### 4. Mark day as complete
```shell
yarn complete
# or
yarn complete --day 01 --stars 2
```