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

https://github.com/jbuget/aoc-2021

https://adventofcode.com/2021
https://github.com/jbuget/aoc-2021

advent-of-code advent-of-code-2021 advent-of-code-2021-javascript aoc aoc2021

Last synced: 3 months ago
JSON representation

https://adventofcode.com/2021

Awesome Lists containing this project

README

        

# aoc-2021
https://adventofcode.com/2021

## Installation

```bash
$ git clone [email protected]:jbuget/aoc-2021.git
$ cd aoc-2021
$ npm install
```

## Usage

```bash
# Initialize a day
$ plop day

# Run tests
$ npm start

# Get a day part result
$ npm start --
```

Examples:

```bash
# ex: for part "one"
$ npm start -- 2 one

# ex: for part "two"
$ npm start -- 10 two
```