
[](https://travis-ci.org/nrwl/nx)
[]()
[](https://www.npmjs.com/@nrwl/nx)
[](https://www.npmjs.com/@nrwl/nx)
[]()
[](http://commitizen.github.io/cz-cli/)
# 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 |
| ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
|  |  |  |
| [vsavkin](https://github.com/vsavkin) | [FrozenPandaz](https://github.com/FrozenPandaz) | [bcabanes](https://github.com/bcabanes) |