diff --git a/docs/shared/getting-started/editor-setup.md b/docs/shared/getting-started/editor-setup.md index 87bfb54845..e2665f3409 100644 --- a/docs/shared/getting-started/editor-setup.md +++ b/docs/shared/getting-started/editor-setup.md @@ -1,6 +1,11 @@ # Editor Setup -Nx Console is the UI for Nx. It works for any installed generators or any targets defined in your workspace. Nx Console does not have a specific UI for, say, generating a component. Instead, Nx Console does what the command-line version of Nx does - it analyzes the same meta information to create the needed UI. This means that anything you can do with Nx, you can do with Nx Console. +Nx Console editor extensions make your developer experience richer. The extensions + +- show [inferred tasks](/concepts/inferred-tasks) and help you invoke them +- show what is cached and how the cache is configured +- provide a visual UI for invoking generators +- show dependencies between projects and tasks ## Download diff --git a/docs/shared/getting-started/intro.md b/docs/shared/getting-started/intro.md index 525d3e6cf3..72198082cc 100644 --- a/docs/shared/getting-started/intro.md +++ b/docs/shared/getting-started/intro.md @@ -5,7 +5,9 @@ Nx is a powerful open-source build system that provides tools and techniques for ## Core Features - **Run Tasks Efficiently**: Nx [runs tasks in parallel](/features/run-tasks) and orders the tasks based on the dependencies between them. +- **Distribute Tasks in CI**: Nx scales your CI by [distributing tasks](/ci/features/distribute-task-execution) across many VMs. Your CI is fast no matter how big your repository is. - **Cache Locally & Remotely**: With [local](/features/cache-task-results) and [remote caching](/ci/features/remote-cache), Nx prevents unnecessary re-runs of tasks, saving you valuable dev time. +- **Split E2E Tests and Rerun Flaky Tests**: Nx [automatically splits](/ci/features/split-e2e-tasks) large e2e tests to distribute them across VMs. Nx can also automatically [identify and rerun flaky e2e tests](/ci/features/flaky-tasks). - **Automate Dependency Updates**: if you leverage [Nx plugins](/concepts/nx-plugins) you gain additional features such as [code generation](/features/generate-code) and tools to [automatically upgrade](features/automate-updating-dependencies) your codebase and dependencies. - **Make it Your Own**: Nx is highly customizable and extensible. Fine-tune it by [creating your own plugins](/extending-nx/intro/getting-started) and optionally [share them with the community](/extending-nx/tutorials/publish-plugin#publish-your-nx-plugin).