Skip to content

nrwl/nx-workshop-node

 
 

Repository files navigation

Nx Workshop - Building a Board Game Store

In this workshop we'll be building a store for a fictional board game company called "The Board Game Hoard".

We're going to be using Nx and some of its plugins to accelerate the development of this application.

Some of the things you'll learn:

  • Generating a pristine Nx workspace
  • Generating Node CLIs and backend APIs inside your workspace
  • Creating shared libs for re-using code
  • How to organize code in a monorepo
  • Easily move libs around your folder structure
  • How to set boundaries between the different scopes in your project
  • Write automated source code generators for common tasks in your workspace
  • Set-up CI workflows for your Pull Requests
  • Add distributed caching
  • Set up the NxCloud GitHub integration
  • Write advanced deployment targets using the run-commands executor
  • Set up Continuous Deployment systems that deploy only the affected projects

To help you understand how to apply some of these lessons in your own projects, we'll try to build a more "real-world" example. However, because of the time constrains and to make sure we get to cover as much material as possible, we'll provide you with all the code for any "non-Nx" work you need to do - so you can focus on learning to use Nx to its full potential.

Pre-requisites

Nx has support for a lot of platforms, but in this workshop we'll be using mainly Node.

Make sure you have the following installed:

How the labs work

Each lab will have the following sections:

  • 📚 "Learning outcomes"
    • A summary of the most important things you'll learn in that lab
  • 📲 "After this workshop, your app should look similar to this"
    • This will contain a screenshot of any changes to the app visuals after the lab
    • Any changes to the source directory structure
  • 🏋️‍♀️ "Steps"
    • All the lab steps you need to follow
Hints and solutions feat. Ron the whale 🐳

While the mighty narwhal is away on secret missions, you will occasionally see his assistant, Ron The Whale 🐳 offering helpful hints to the different exercises. Please use these if you get stuck.

If you get stuck running any Nx command, there is a SOLUTION.md file in each lab's folder.

As mentioned, for anything Angular/styling or HTML template work we will provide the code you need as direct links to the files. Please use these as much as possible.

Slides

Can be found here

The labs

Each lab will contain a link to the next one. Start from "Lab 1" and move through them as required.

Catching up with missed labs

If you fall behind or join late, we provide migrations that would bring your repository up to date with desired lab. To use the migrations follow the next steps:

  1. Install @nrwl/nx-workshop-node package as dev dependency (e.g. yarn add -D @nrwl/nx-workshop-node). If you finished Lab 4 - Migrations then you should already have it installed.
  2. Run the generator with one of the following options:
    • Provide lab you want to complete: nx g @nrwl/nx-workshop-node:complete-labs --lab=5 or
    • Use from range to finish until end: nx g @nrwl/nx-workshop-node:complete-labs --from=2
    • Use to range to catch up with given lab: nx g @nrwl/nx-workshop-node:complete-labs --to=5
    • Use from/to range to catch up with several labs in between: nx g @nrwl/nx-workshop-node:complete-labs --from=2 --from=7
    • Use option to specify if you want track 1 or track 2: nx g @nrwl/nx-workshop-node:complete-labs --from=19 --option=option2
  3. Finally, run the the migrations npx nx migrate --run-migrations to have that code generated
Labs
👩‍💻 Lab 1 - Generate an empty workspace
⚗️ Lab 2 - Generate a Node API
🏃 Lab 3 - Executors
🚂 Lab 4 - Migrations
🧩 Lab 5 - Generate an auth library
🏭 Lab 6 - Add a Node CLI
📏 Lab 7 - Generate a type lib that the API and CLI can share
🛑 Lab 8 - Module boundaries
⚙️ Lab 9 - Workspace Plugins and Generators - Intro
🧵 Lab 10 - Workspace Plugins and Generators - Modifying files
🔎 Lab 11 - Setting up CI
☁️ Lab 12 - Distributed caching
🔍 Lab 13 - NxCloud GitHub bot

About

Companion labs for the workshop: "Node Monorepos with Nx"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 87.6%
  • Shell 8.6%
  • JavaScript 3.8%