Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandovidal/adventjs-2021
💻 Solutions to the Adventjs challenges on https://adventjs.dev. Created by @midudev
https://github.com/brandovidal/adventjs-2021
adventjs brandovidal challengues midudev
Last synced: about 2 months ago
JSON representation
💻 Solutions to the Adventjs challenges on https://adventjs.dev. Created by @midudev
- Host: GitHub
- URL: https://github.com/brandovidal/adventjs-2021
- Owner: brandovidal
- License: mit
- Created: 2022-06-28T16:28:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-28T10:59:41.000Z (over 1 year ago)
- Last Synced: 2023-09-28T13:21:11.662Z (over 1 year ago)
- Topics: adventjs, brandovidal, challengues, midudev
- Language: JavaScript
- Homepage:
- Size: 900 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🎅 AdventJS Solutions
My solutions to [25 days of JavaScript challenges](https://adventjs.dev/) by [@midudev](https://twitter.com/midudev).
## 💡 Project setup 😎
- [Standard](https://standardjs.com/) for code linting and formatting
- vscode settings to run code formatting & linting on save
- Pre-commit hook to ckeck code formatting & linting using [husky](https://typicode.github.io/husky/) & [lint-staged](https://github.com/okonet/lint-staged)## 💻️ Installation & usage ⚒️
- Clone this project
- Install dependecies
- Run all tests or run only the day X tests```bash
npm install# Run all tests
npm run test# Run day 1 tests (identified by 01 or day01)
npm run test 01
npm run test day01
```## 🚀 Challenges 🎮
| Day | Name | Rules | Tests | Code |
| --- | ---------------------------------------------------------------------------------- | ------------------------------------------- | ---------------------------------- | ---------------------------- |
| 1 | [Contando ovejas para dormir](./src/day01/README.md) | [rules](https://adventjs.dev/challenges/01) | [tests](./src/day01/index.test.js) | [code](./src/day01/index.js) |
| 2 | [¡Ayuda al elfo a listar los regalos!](./src/day02/README.md) | [rules](https://adventjs.dev/challenges/02) | [tests](./src/day02/index.test.js) | [code](./src/day02/index.js) |
| 3 | [El Grinch quiere fastidiar la Navidad](./src/day03/README.md) | [rules](https://adventjs.dev/challenges/03) | [tests](./src/day03/index.test.js) | [code](./src/day03/index.js) |
| 4 | [¡Es hora de poner la navidad en casa!](./src/day04/README.md) | [rules](https://adventjs.dev/challenges/04) | [tests](./src/day04/index.test.js) | [code](./src/day04/index.js) |
| 5 | [Contando los días para los regalos](./src/day05/README.md) | [rules](https://adventjs.dev/challenges/05) | [tests](./src/day05/index.test.js) | [code](./src/day05/index.js) |
| 6 | [Rematando los exámenes finales](./src/day06/README.md) | [rules](https://adventjs.dev/challenges/06) | [tests](./src/day06/index.test.js) | [code](./src/day06/index.js) |
| 7 | [Buscando en el almacén...](./src/day07/README.md) | [rules](https://adventjs.dev/challenges/07) | [tests](./src/day07/index.test.js) | [code](./src/day07/index.js) |
| 8 | [La locura de las criptomonedas](./src/day08/README.md) | [rules](https://adventjs.dev/challenges/08) | [tests](./src/day08/index.test.js) | [code](./src/day08/index.js) |
| 9 | [Agrupando cosas automáticamente](./src/day09/README.md) | [rules](https://adventjs.dev/challenges/09) | [tests](./src/day09/index.test.js) | [code](./src/day09/index.js) |
| 10 | [La máquina de cambio](./src/day10/README.md) | [rules](https://adventjs.dev/challenges/10) | [tests](./src/day10/index.test.js) | [code](./src/day10/index.js) |
| 11 | [¿Vale la pena la tarjeta fidelidad del cine?](./src/day11/README.md) | [rules](https://adventjs.dev/challenges/11) | [tests](./src/day11/index.test.js) | [code](./src/day11/index.js) |
| 12 | [La ruta perfecta para dejar los regalos](./src/day12/README.md) | [rules](https://adventjs.dev/challenges/12) | [tests](./src/day12/index.test.js) | [code](./src/day12/index.js) |
| 13 | [Envuelve regalos con asteriscos](./src/day13/README.md) | [rules](https://adventjs.dev/challenges/13) | [tests](./src/day13/index.test.js) | [code](./src/day13/index.js) |## 💯 Acknowledgements
- [@midudev](https://twitter.com/midudev) for sharing his knowledge with the DEV community in [YouTube](https://midu.tube/), [Twitch](https://midu.live/), [blog](https://midu.dev/), ... & creating [adventJS](https://adventjs.dev/)
- [@\_brandovidal](https://twitter.com/_brandovidal) for creating [AdventJS Solutions](https://github.com/brandovidal/adventjs)