1.4.4 • Published 4 years ago
aoc-loader v1.4.4
Advent of Code Input Loader
Loads Advent of Code input data for a specified day and year. In order not to flood the website, the input data is cached in the temporary folder. The following executions, the data will be read from there.
Install
npm install aoc-loaderUse
const aocLoader = require('aoc-loader');
const year = 2020;
const day = 1;
aocLoader(year, day, sessionCookie).then((data) => {
console.log(data);
});If no sessionCookie is provided, aocLoader will try to get it from the AOC_SESSION environment variable. This is the recommended way of using this package.
If neither sessionCookie nor the AOC_SESSION environment variable is defined, then aocLoader will throw an error.
Get the session cookie
- Sign in to Advent of Code.
- Open the developer tools of your browser.
- Locate the cookies for the website.
- E.g. in Chrome, you will find them under
Application -> Cookies -> https://adventofcode.com
- E.g. in Chrome, you will find them under
- Copy the value of the
sessioncookie.