- Clone/fork this maf:
git clone https://gitlab.com/mattcan/aoc-node-template cd aoc-node-template
- Install dependencies:
npm i
- Set session cookie value (use a browser to login to the site):
export AOC_SESSION=somevalue
Copy the day and day test template
cp days/.day.template.js days/01.js
cp days/.day.test.template.js days/01.test.js
You can then run tests or get the results of the day:
# testing
npm test
# get day 1 results
npm start -- 1