You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build and write code, make sure you have the following set of tools on your local environment:
28
+
29
+
*[Git](https://git-scm.com/downloads) - Open source distributed version control system. For install instructions, refer [this](https://www.atlassian.com/git/tutorials/install-git).
30
+
*[Node.js](https://nodejs.org/en/download/) - JavaScript runtime. (`v18 or higher`)
31
+
*[pnpm](https://pnpm.io/) - Alternate npm client for faster package installs. (`v9 or higher`)
32
+
33
+
## Development Tools
34
+
35
+
### NX Console
36
+
37
+
Editor plugin which wraps NX commands so you don't have to memorize.
38
+
39
+
-[Install for VS Code](https://marketplace.visualstudio.com/items?itemName=nrwl.angular-console)
40
+
-[Install for VS Web Storm](https://plugins.jetbrains.com/plugin/15000-nx-webstorm)
41
+
42
+
### React Developer Tools
43
+
44
+
Browser extension to debug React code.
45
+
46
+
-[Download for Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en)
47
+
-[Download for Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
48
+
49
+
### ESLint Plugin
50
+
51
+
Static code analysis tool for identifying problematic patterns found in JavaScript/Typescript code.
52
+
53
+
-[Install for VS Code](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
54
+
-[Install for VS Web Storm](https://www.jetbrains.com/help/webstorm/eslint.html)
55
+
56
+
### Code Spell Checker
57
+
58
+
A basic spell checker that works well with code and documents.
59
+
60
+
-[Install for VS Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker)
61
+
62
+
### JSON Sort Order
63
+
64
+
Sorts JSON objects in alphabetical order.
65
+
66
+
-[Install for VS Code](https://marketplace.visualstudio.com/items?itemName=msyesyan.json-sorter)
67
+
68
+
## Setting up the Source Code
69
+
70
+
1.[Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) the repository.
71
+
2. Clone your fork to the local machine.
72
+
73
+
Replace `<github username>` with your own username.
0 commit comments