An open API service indexing awesome lists of open source software.

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

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

![Animated gif demo](demo.gif)

### 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
```