Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lindell/aoc-loader
Loads Advent of Code input data for a specified day and year.
https://github.com/lindell/aoc-loader
advent advent-of-code aoc puzzle
Last synced: about 4 hours ago
JSON representation
Loads Advent of Code input data for a specified day and year.
- Host: GitHub
- URL: https://github.com/lindell/aoc-loader
- Owner: lindell
- Created: 2017-12-05T11:39:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-04T18:56:06.000Z (3 days ago)
- Last Synced: 2024-11-04T19:43:03.258Z (3 days ago)
- Topics: advent, advent-of-code, aoc, puzzle
- Language: TypeScript
- Homepage:
- Size: 264 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Advent of Code Input Loader
Loads [Advent of Code](http://adventofcode.com/) 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
```sh
npm install aoc-loader
```## Use
```javascript
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
1. Sign in to Advent of Code.
2. Open the developer tools of your browser.
3. Locate the cookies for the website.
- E.g. in Chrome, you will find them under `Application -> Cookies -> https://adventofcode.com`
4. Copy the value of the `session` cookie.