[![Build Status](https://travis-ci.org/nrwl/nx.svg?branch=master)](https://travis-ci.org/nrwl/nx) [![License](https://img.shields.io/npm/l/@nrwl/schematics.svg?style=flat-square)]() [![NPM Version](https://badge.fury.io/js/%40nrwl%2Fnx.svg)](https://www.npmjs.com/@nrwl/nx) [![NPM Downloads](https://img.shields.io/npm/dt/@nrwl/schematics.svg?style=flat-square)](https://www.npmjs.com/@nrwl/nx) [![Semantic Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)]() [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

Our Newest Nrwl Connect event


# What is Nx? πŸ”Ž **Nx is a set of Angular CLI power-ups for modern development.** ## Nx Helps You ### Use Modern Tools Using Nx, you can add Cypress, Jest, Prettier, and Nest into your dev workflow. Nx sets up these tools and allows you to use them seamlessly. Nx fully integrates with the other modern tools you already use and love. ### Build Full-Stack Applications With Nx, you can build full-stack applications using Angular and Node.js frameworks such as Nest and Express. You can share code between the frontend and the backend. And you can use the familiar `ng build/test/serve` commands to power whole dev experience. ### Develop Like Google With Nx, you can develop multiple full-stack applications holistically and share code between them all in the same workspace. Nx provides advanced tools which help you scale your enterprise development. Nx helps enforce your organization’s standards and community best practices. ## A la carte Most importantly, you can use these power-ups a la carte. Just want to build a single Angular application using Cypress? Nx is still an excellent choice for that. ## Does it replace Angular CLI? Nx **is not** a replacement for Angular CLI. **An Nx workspace is an Angular CLI workspace.** - You run same `ng build`, `ng serve` commands. - You configure your projects in `angular.json`. - Anything you can do in a standard Angular CLI project, you can also do in an Nx workspace. # Getting Started ## Creating an Nx Workspace **Using `npx`** ```bash npx create-nx-workspace myworkspace ``` **Using `npm init`** ```bash npm init nx-workspace myworkspace ``` **Using `yarn create`** ```bash yarn create nx-workspace myworkspace ``` ## Adding Nx to an Existing Angular CLI workspace If you already have a regular Angular CLI project, you can add Nx power-ups by running: ```bash ng add @nrwl/schematics ``` ## Creating First Application Unlike the CLI, an Nx workspace starts blank. There are no applications to build, serve, and test. To create one run: ```bash ng g application myapp ``` The result will look like this: ```treeview / β”œβ”€β”€ README.md β”œβ”€β”€ angular.json β”œβ”€β”€ apps/ β”‚Β Β  β”œβ”€β”€ myapp/ β”‚Β Β  β”‚Β Β  β”œβ”€β”€ browserslist β”‚Β Β  β”‚Β Β  β”œβ”€β”€ jest.conf.js β”‚Β Β  β”‚Β Β  β”œβ”€β”€ src/ β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app/ β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ assets/ β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ environments/ β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ favicon.ico β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.html β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ main.ts β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ polyfills.ts β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ styles.scss β”‚Β Β  β”‚Β Β  β”‚Β Β  └── test.ts β”‚Β Β  β”‚Β Β  β”œβ”€β”€ tsconfig.app.json β”‚Β Β  β”‚Β Β  β”œβ”€β”€ tsconfig.json β”‚Β Β  β”‚Β Β  β”œβ”€β”€ tsconfig.spec.json β”‚Β Β  β”‚Β Β  └── tslint.json β”‚Β Β  └── myapp-e2e/ β”‚Β Β  Β Β  β”œβ”€β”€ cypress.json β”‚Β Β  Β Β  β”œβ”€β”€ src/ β”‚Β Β  Β Β  β”‚Β Β  β”œβ”€β”€ fixtures/ β”‚Β Β  Β Β  β”‚Β Β  β”‚Β Β  └── example.json β”‚Β Β  Β Β  β”‚Β Β  β”œβ”€β”€ integration/ β”‚Β Β  Β Β  β”‚Β Β  β”‚Β Β  └── app.spec.ts β”‚Β Β  Β Β  β”‚Β Β  β”œβ”€β”€ plugins/ β”‚Β Β  Β Β  β”‚Β Β  β”‚Β Β  └── index.ts β”‚Β Β  Β Β  β”‚Β Β  └── support/ β”‚Β Β  Β Β  β”‚Β Β  Β Β  β”œβ”€β”€ app.po.ts β”‚Β Β  Β Β  β”‚Β Β  Β Β  β”œβ”€β”€ commands.ts β”‚Β Β  Β Β  β”‚Β Β  Β Β  └── index.ts β”‚Β Β  Β Β  β”œβ”€β”€ tsconfig.e2e.json β”‚Β Β  Β Β  β”œβ”€β”€ tsconfig.json β”‚Β Β  Β Β  └── tslint.json β”œβ”€β”€ libs/ β”œβ”€β”€ nx.json β”œβ”€β”€ package.json β”œβ”€β”€ tools/ β”œβ”€β”€ tsconfig.json └── tslint.json ``` All the files that the CLI would have in a new project are still here, just in a different folder structure which makes it easier to create more applications and libraries in the future. ## Serving Application Run `ng serve myapp` to serve the newly generated application! You are good to go! ## Quick Start & Documentation ### Documentation - [Nx Documentation and Guides](https://nx.dev) - [Nx blog posts](https://blog.nrwl.io/nx/home) ### Books - [Angular Enteprise Monorepo Patters](https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book?utm_campaign=Book%3A%20Monorepo%20Patterns%2C%20Jan%202019&utm_source=Github&utm_medium=Banner%20Ad) ### Videos - [5-minute video on how to get started with Nx.](http://nrwl.io/nx) - [Video course on using Nx Workspaces](https://angularplaybook.com/p/nx-workspaces) ### Talks - [Angular at Large Organizations](https://www.youtube.com/watch?v=piQ0EZhtus0) - [Nx: The New Way to Build Enterprise Angular Apps](https://www.youtube.com/watch?v=xo-1SDmvM8Y) - [Supercharging the Angular CLI](https://www.youtube.com/watch?v=bMkKz8AedHc) - [Hands on Full Stack development with Nx and Bazel](https://www.youtube.com/watch?v=1KDDIhcQORM) ### Podcasts and Shows - [ngAir 140: Nx for Enterprise Angular Development](https://www.youtube.com/watch?v=qYNiOKDno_I) - [ngHouston: NX Demo](https://www.youtube.com/watch?v=E_UlU2Yv4G0) ## Misc - [nx-examples](https://github.com/nrwl/nx-examples) repo has branches for different nx comments to display expected behavior and example app and libraries. Check out the branch (workspace, ngrx...) to see what gets created for you. More info on readme. - [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/) ## Want to help? If you want to file a bug or submit a PR, read up on our [guidelines for contributing](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md). ## Core Team | Victor Savkin | Jason Jean | Benjamin Cabanes | | ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | | ![Victor Savkin](https://github.com/nrwl/nx/blob/master/static/victor_pic.jpg) | ![Jason Jean](https://github.com/nrwl/nx/blob/master/static/jason_pic.jpg) | ![Benjamin Cabanes](https://github.com/nrwl/nx/blob/master/static/ben_pic.jpg) | | [vsavkin](https://github.com/vsavkin) | [FrozenPandaz](https://github.com/FrozenPandaz) | [bcabanes](https://github.com/bcabanes) |