/aoc-2018-ts

Advent of Code 2018 Node-Typescript

Primary LanguageTypeScriptMIT LicenseMIT

Repository for solutions to select Advent of Code 2018 problems, written primarily (solely?) in Typescript using the TDD red-green-refactor approach.

Edit and Run

Write your program using src/index.ts as the entry point, and run it.

$ npm run start

Individual problems will be split out into standalone modules.

👮 All the test need to pass in order to make a git push.

How to TDD:

Create a test file next to the file you want to test, using the nomenclature <file-name>.test.ts.

$ npm run tdd

Based on TypeScript Node App Starter. See its readme.md for installation instructions, list of contributors, etc.