Skip to content

Commit afc6faf

Browse files
committed
chore(repo): clean up readme
1 parent f31b8cb commit afc6faf

File tree

3 files changed

+40
-123
lines changed

3 files changed

+40
-123
lines changed

CODE_OF_CONDUCT.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of the Nx project, we pledge to respect everyone who contributes by posting issues, updating documentation, submitting pull requests, providing feedback in comments, and any other activities.
4+
5+
Communication through any of Nx's channels (GitHub, Gitter, Slack, IRC, mailing lists, Twitter, etc.) must be constructive and never resort to personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
6+
7+
We promise to extend courtesy and respect to everyone involved in this project regardless of gender, gender identity, sexual orientation, disability, age, race, ethnicity, religion, or level of experience. We expect anyone contributing to the Nx project to do the same.
8+
9+
If any member of the community violates this code of conduct, the maintainers of the Nx project may take action, removing issues, comments, and PRs or blocking accounts as deemed appropriate.
10+
11+
If you are subject to or witness unacceptable behavior, or have any other concerns, please email us at [email protected].

README.md

+22-116
Original file line numberDiff line numberDiff line change
@@ -16,103 +16,37 @@
1616

1717
# What is Nx?
1818

19-
🔎 **Powerful, Extensible Dev Tools.**
19+
🔎 **Powerful, Extensible Dev Tools**
2020

21-
## Nx Helps You
22-
23-
### Develop like Google, Facebook, and Microsoft
24-
25-
Nx helps scale your development from one team building one application to many teams building multiple frontend and backend applications all in the same workspace. When using Nx, developers have a holistic dev experience powered by an advanced CLI (with editor plugins), capabilities for controlled code sharing and consistent code generation.
26-
27-
### Use Intelligent Build System with Distributed Caching
21+
### Use Intelligent Build System with Distributed Caching & Distributed Task Execution
2822

2923
Nx is smart. It analyzes your workspace and figures out what can be affected by every code change. That's why Nx doesn't rebuild and retest everything on every commit--it only rebuilds what is necessary.
3024

31-
Nx also uses a distributed computation cache. If someone has already built or tested similar code, Nx will use their results to speed up the command for everyone else instead of rebuilding or retesting the code from scratch. This, in combination with Nx’s support for distributed and incremental builds, can help teams see up to 10x reduction in build and test times.
32-
33-
### Use Modern Tools
34-
35-
Nx is an open platform with plugins for many modern tools and frameworks. It has support for TypeScript, React, Angular, Cypress, Jest, Prettier, Nest.js, Next.js, Storybook, Ionic among others. With Nx, you get a consistent dev experience regardless of the tools used.
36-
37-
# Getting Started
38-
39-
## Creating an Nx Workspace
40-
41-
**Using `npx`**
42-
43-
```bash
44-
npx create-nx-workspace
45-
```
25+
Nx also uses a distributed computation cache. If someone has already built or tested similar code, Nx will use their results to speed up the command for everyone else instead of rebuilding or retesting the code from scratch.
4626

47-
**Using `npm init`**
27+
This, in combination with Nx’s support for config-free distributed task execution, where a command can be split and ran on many machines in parallel, can help teams see up to 10x reduction in build and test times.
4828

49-
```bash
50-
npm init nx-workspace
51-
```
29+
### Develop Efficiently at Scale with Nx
5230

53-
**Using `yarn create`**
54-
55-
```bash
56-
yarn create nx-workspace
57-
```
58-
59-
The `create-nx-workspace` command will ask you to select a preset, which will configure some plugins and create your applications to help you get started.
60-
61-
```
62-
? What to create in the new workspace (Use arrow keys)
63-
❯ empty [an empty workspace with a layout that works best for building apps]
64-
oss [an empty workspace with a layout that works best for open-source projects]
65-
web components [a workspace with a single app built using web components]
66-
angular [a workspace with a single Angular application]
67-
angular-nest [a workspace with a full stack application (Angular + Nest)]
68-
react [a workspace with a single React application]
69-
react-express [a workspace with a full stack application (React + Express)]
70-
next.js [a workspace with a single Next.js application]
71-
```
72-
73-
Select the preset that works best for you. You can always add plugins later.
74-
75-
```
76-
? Workspace name (e.g., org name) happyorg
77-
? What to create in the new workspace web components [a workspace with a single app built using web components]
78-
? Application name myapp
79-
? Default stylesheet format CSS
80-
```
81-
82-
If it's your first Nx project, the command will recommend you to install the `nx` package globally, so you can invoke `nx` directly without going through yarn or npm.
83-
84-
## Serving Application
85-
86-
- Run `nx serve myapp` to serve the newly generated application!
87-
- Run `nx test myapp` to test it.
88-
- Run `nx e2e myapp-e2e` to run e2e tests for it.
31+
Nx helps scale your development from one team building one application to many teams building multiple frontend and backend applications all in the same workspace. When using Nx, developers have a holistic dev experience powered by an advanced CLI (with editor plugins), capabilities for controlled code sharing and consistent code generation.
8932

90-
Angular users can also run `ng g/serve/test/e2e`.
33+
### Use Modern Tools
9134

92-
You are good to go!
35+
Nx is an open framework with plugins for many modern tools and frameworks. It has support for TypeScript, React, Angular, Cypress, Jest, Prettier, Nest.js, Next.js, Storybook, Ionic among others. With Nx, you get a consistent dev experience regardless of the tools used.
9336

94-
## Resources
37+
# Documentation & Resources
9538

96-
### Documentation
39+
Even though Nx isn't technology specific, we provide 3 separate flavours of the documentation site to it make it easier for you to get up and running. For every link below, you will be able to select whether you want your examples to be written in React, Node or Angular.
9740

9841
- [Nx Documentation and Guides](https://nx.dev)
42+
- [Intro into Nx](https://nx.dev/getting-started/intro)
43+
- [Interactive Tutorial with Videos](https://nx.dev/tutorial/01-create-application)
9944

10045
### Quick Start Videos
10146

102-
<table>
103-
<tr>
104-
<td>
105-
<a href="https://www.youtube.com/watch?v=mVKMse-gFBI" target="_blank">
106-
<p style="text-align: center;">Angular<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-angular-video.png" width="350" alt="Nx - Quick Start Video for Angular"></p>
107-
</a>
108-
</td>
109-
<td>
110-
<a href="https://www.youtube.com/watch?v=E188J7E_MDU" target="_blank">
111-
<p style="text-align: center;">React<br><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-react-video.png" width="350" alt="Nx - Quick Start Video for React"></p>
112-
</a>
113-
</td>
114-
</tr>
115-
</table>
47+
- [Scale Your React Development with Nx](https://www.youtube.com/watch?v=sNz-4PUM0k8)
48+
- [Scale your Node Development with Nx](https://www.youtube.com/watch?v=iIh5h_G52kI)
49+
- [Modern Angular with Nx Dev Tools](https://www.youtube.com/watch?v=cXOkmOy-8dk)
11650

11751
### Courses
11852

@@ -141,52 +75,24 @@ You are good to go!
14175
</tr>
14276
</table>
14377

144-
### Nx Demo & Tutorial Videos
78+
### Videos, Blogs, Books, Examples
14579

14680
- [Nx Dev Tools for Monorepos, In-Depth Explainer (React)](https://www.youtube.com/watch?v=jCf92IyR-GE)
14781

14882
- [Nx Dev Tools for Monorepos, In-Depth Explainer (Angular)](https://youtu.be/h5FIGDn5YM0)
14983

150-
- [Storybook Integration with Nx](https://youtu.be/sFpqyjT7u4s)
151-
152-
- [Building Custom Plugins for Nx](https://youtu.be/XYO689PAhow)
153-
154-
- [Improved Dependency Graph Visualization for Nx](https://youtu.be/cMZ-ReC-jWU)
155-
156-
- [Group all your stories into a single viewable Storybook with Nx](https://youtu.be/c323HOuFKkA)
157-
158-
- [Debug Nx with Node and VSCode](https://youtu.be/OGV4R0cPRPc)
84+
- [Youtube Channel with Nx-Related Videos](https://www.youtube.com/playlist?list=PLakNactNC1dHHWx4JIORwfnEajRv6FG5m)
15985

160-
- [Debug your Jest tests in Nx with VSCode](https://youtu.be/9_lgM2nokLg)
161-
162-
- [Nx Console - A Must-Have Visual Studio Code Extension for Angular Developers](https://youtu.be/IIetmfgozgI)
163-
164-
- [Introducing Nx Cloud](https://youtu.be/pwG20nNTEQc)
165-
166-
- [Setting up distributed caching using Nx Cloud, @nrwl/nx-cloud](https://youtu.be/w1-GiB74ddc)
167-
168-
- [High Quality React apps with Nx & Cypress](https://youtu.be/mfJBLhjYMdo)
169-
170-
### Books and Blogs
171-
172-
- [Nx blog posts](https://blog.nrwl.io/nx/home)
86+
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
17387

17488
- [Angular Enterprise Monorepo Patterns Book (free)](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)
17589

176-
- [High Quality React apps with Nx & Cypress](https://cypress.io/blog/2020/04/14/high-quality-react-apps-with-nx-cypress/) (April 2020)
177-
178-
- [Shell Library patterns with Nx and Monorepo Architectures](https://indepth.dev/the-shell-library-patterns-with-nx-and-monorepo-architectures/) (March 2020)
179-
180-
- [Tiny Angular application projects in Nx workspaces](https://indepth.dev/tiny-angular-application-projects-in-nx-workspaces/#peer-reviewers--30/) (March 2020)
181-
182-
### Additional Resources
183-
184-
- [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.
90+
- [Nx Examples Repo](https://github.com/nrwl/nx-examples)
18591

186-
- [xplat - Cross-platform tools for Nx workspaces](https://nstudio.io/xplat/)
187-
- [Nrwl Talks, Presentations, and Podcasts playlist on YouTube](https://www.youtube.com/playlist?list=PLakNactNC1dHHWx4JIORwfnEajRv6FG5m)
92+
# Engage with the Core Team and the Community
18893

189-
- [Nx Office Hours playlist on YouTube](https://www.youtube.com/playlist?list=PLakNactNC1dE8KLQ5zd3fQwu_yQHjTmR5)
94+
- [Nx Office Hours Playlist on YouTube](https://www.youtube.com/playlist?list=PLakNactNC1dE8KLQ5zd3fQwu_yQHjTmR5). It's a regular YouTube stream where we talk all things Nx. Join the stream, ask questions, etc.
95+
- [Follow Nx on Twitter](https://twitter.com/NxDevTools)
19096

19197
## Want to help?
19298

scripts/readme-fragments/what-is-nx.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
🔎 **Powerful, Extensible Dev Tools**
44

5-
## Nx Helps You
5+
### Use Intelligent Build System with Distributed Caching & Distributed Task Execution
66

7-
### Develop like Google, Facebook, and Microsoft
7+
Nx is smart. It analyzes your workspace and figures out what can be affected by every code change. That's why Nx doesn't rebuild and retest everything on every commit--it only rebuilds what is necessary.
88

9-
Nx helps scale your development from one team building one application to many teams building multiple frontend and backend applications all in the same workspace. When using Nx, developers have a holistic dev experience powered by an advanced CLI (with editor plugins), capabilities for controlled code sharing and consistent code generation.
9+
Nx also uses a distributed computation cache. If someone has already built or tested similar code, Nx will use their results to speed up the command for everyone else instead of rebuilding or retesting the code from scratch.
1010

11-
### Use Intelligent Build System with Distributed Caching
11+
This, in combination with Nx’s support for config-free distributed task execution, where a command can be split and ran on many machines in parallel, can help teams see up to 10x reduction in build and test times.
1212

13-
Nx is smart. It analyzes your workspace and figures out what can be affected by every code change. That's why Nx doesn't rebuild and retest everything on every commit--it only rebuilds what is necessary.
13+
### Develop Efficiently at Scale with Nx
1414

15-
Nx also uses a distributed computation cache. If someone has already built or tested similar code, Nx will use their results to speed up the command for everyone else instead of rebuilding or retesting the code from scratch. This, in combination with Nx’s support for distributed and incremental builds, can help teams see up to 10x reduction in build and test times.
15+
Nx helps scale your development from one team building one application to many teams building multiple frontend and backend applications all in the same workspace. When using Nx, developers have a holistic dev experience powered by an advanced CLI (with editor plugins), capabilities for controlled code sharing and consistent code generation.
1616

1717
### Use Modern Tools
1818

19-
Nx is an open platform with plugins for many modern tools and frameworks. It has support for TypeScript, React, Angular, Cypress, Jest, Prettier, Nest.js, Next.js, Storybook, Ionic among others. With Nx, you get a consistent dev experience regardless of the tools used.
19+
Nx is an open framework with plugins for many modern tools and frameworks. It has support for TypeScript, React, Angular, Cypress, Jest, Prettier, Nest.js, Next.js, Storybook, Ionic among others. With Nx, you get a consistent dev experience regardless of the tools used.

0 commit comments

Comments
 (0)