Socket
Socket
Sign inDemoInstall

@nrwl/nx-cloud

Package Overview
Dependencies
Maintainers
7
Versions
343
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nrwl/nx-cloud

Distributed caching and task execution for Lerna and Nx


Version published
Weekly downloads
290K
decreased by-2.66%
Maintainers
7
Weekly downloads
 
Created

What is @nrwl/nx-cloud?

@nrwl/nx-cloud is a powerful tool designed to enhance the capabilities of the Nx build system by providing distributed caching, task orchestration, and other cloud-based features. It helps teams to speed up their CI/CD pipelines and improve the efficiency of their development workflows.

What are @nrwl/nx-cloud's main functionalities?

Distributed Caching

Distributed caching allows you to share build artifacts across different environments, reducing redundant work and speeding up the build process. The code sample shows how to configure cacheable operations in your Nx workspace.

module.exports = { cacheableOperations: ['build', 'test', 'lint'] };

Task Orchestration

Task orchestration helps in managing and running tasks efficiently across multiple machines. The code sample demonstrates how to set up Nx Cloud as the default tasks runner with an access token.

module.exports = { tasksRunnerOptions: { default: { runner: '@nrwl/nx-cloud', options: { accessToken: 'your-access-token' } } } };

Real-time Insights

Real-time insights provide visibility into the build process, helping teams to identify bottlenecks and optimize their workflows. The code sample shows how to enable the Nx Cloud dashboard for real-time monitoring.

module.exports = { nxCloud: { showDashboard: true } };

Other packages similar to @nrwl/nx-cloud

Keywords

FAQs

Package last updated on 07 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc