Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/francisfuzz/aoc-2022
https://github.com/francisfuzz/aoc-2022
Last synced: about 8 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/francisfuzz/aoc-2022
- Owner: francisfuzz
- License: mit
- Created: 2022-12-06T03:24:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-25T03:51:58.000Z (almost 2 years ago)
- Last Synced: 2024-04-17T17:15:30.503Z (7 months ago)
- Language: TypeScript
- Size: 221 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A Repo for Advent of Code 2022 in TypeScript
## Instructions
```shell
# Clone the repo and change directory into it
git clone https://github.com/francisfuzz/aoc2022.git && cd aoc2022/# Install the dependencies
npm install# Option 1
# Run the build task to compile the TypeScript files, then run the file with `node`
npm run build
node dist/day1.js# Option 2
# Use `ts-node` directly
npx ts-node day1/day1.ts
```## Credits
Originally forked from https://github.com/colindembovsky/aoc2021. Moved to its own repository so it is a root repo.