Skip to content

Create your own challenge

You have an idea you want to share, an interesting bug you are struggling with in one of your private or side project, or an Angular trick you discovered. All of these possibilities are a good starting point to create a challenge and share the solution with others.

But how do you start creating these challenges?

Boilerplate Setup

To streamline the process, I have created an Nx generator that will set up all the boilerplate for you and get you ready faster. The easiest way to run it is by using the Nx console: go to the Nx Console > generate > @angular-challenges/cli - challenge

Parameters

mandatory parameters

  • title: The title you want to give to your challenge.

  • challengeDifficulty: The difficulty you think your challenge has. There are three difficulty levels : 🟒 easy / 🟠 medium / πŸ”΄ hard

  • name: name of the Nx application.

  • docRepository: The category of your Challenge: Nx, Angular, Angular Performance, Rxjs, NgRx, Typescript.

optional parameters

  • directory: If you want your application to be located in a specific folder inside apps.
  • addTest: If you want to add test configuration.

What is created

  • The generator will create all the files needed to have a new working application. All these files will be created inside apps/${directory}/${name}
  • A Markdown file with the minimal setup will be created inside docs/src/content/docs/challenges/${docRepository}

Challenge Creation

The only thing left to do is to create your challenge. πŸš€

It’s your turn to act!!! πŸ’ͺ

Solution Submittion

After one week or so, don’t forget to provide your solution to your challenge.