Setting up your workspace
You'll need to have these recommended applications (or an equivalent) running on your local machine.
#
Code EditorYou will need a code editor to create your solution. Zea recommends using Visual Studio Code.
Visual Studio Code is a source-code editor developed by Microsoft for Windows, Linux, and macOS. It includes embedded Git and support for debugging, syntax highlighting, intelligent code completion, snippets, and code refactoring.
#
Command ShellMany of the commands in the 'How-To' and Tutorials need to be run in a command shell. For windows users, installing the Git Bash shell provides a powerful tool for running commands. https://git-scm.com/downloads
#
JavaScript Runtime EnvironmentNode.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside of a web browser.
The most recent versions of Node.js also include npx, a CLI tool whose purpose is to make it easy to run any sort of Node.js based executable that you would normally install via a package manager.
#
JavaScript Package ManagerYarn is a new package manager that replaces the existing workflow for the npm client or other package managers while remaining compatible with the npm registry. It has the same feature set as existing workflows while operating faster, more securely, and more reliably.
#
Next stepsNow that you have a basic workspace setup, you can move onto getting your first build working