Resources & Tools
157 |Thank you for using and showing some ♥ for Nx.
158 |Here are some links to help you get started.
173 |-
174 |
- 175 | 179 | Nx video course 180 | 181 | 182 |
- 183 | 187 | Nx video tutorial 188 | 189 | 190 |
- 191 | 195 | Interactive tutorial 196 | 197 | 198 |
- 199 | 200 | 216 | Nx Cloud 217 | 218 | 219 |
Next Steps
221 |Here are some things you can do with Nx.
222 |Add UI library
224 |{`# Generate UI lib
225 | nx g @nrwl/react:lib ui
226 |
227 | # Add a component
228 | nx g @nrwl/react:component xyz --project ui`}
229 | View dependency graph
232 |{`nx dep-graph`}
233 | Run affected commands
236 |{`# see what's been affected by changes
237 | nx affected:dep-graph
238 |
239 | # run tests for current changes
240 | nx affected:test
241 |
242 | # run e2e tests for current changes
243 | nx affected:e2e
244 | `}
245 |