If you are new to coding, this will guide you through setup of a modern development environment on your computer. Beware there are dozens of languages and frameworks to choose from. We are suggesting nuxt for your first hackathon, because it is particularly easy to set up and get started.
- Git (version control system)
- Node.js (platform) and npm (package manager)
- Visual Studio Code (Code Editor)
winget install -e --id Microsoft.VisualStudioCode
winget install -e --id OpenJS.NodeJS
winget install -e --id Git.Git
Older Windows: Install chocolatey and choco install vscode git nodejs
- Install brew (https://brew.sh/)
brew install git node
- Install vs code from website (https://code.visualstudio.com/)
(in terminal, command line / terminal->new terminal in vscode)
node --version
npm --version
git --version
All these 3 commands should return a version number.
- Log in to github (create an account if necessary)
- fork this repository.
# npm
npm install
Start the development server on http://localhost:3000
npm run dev
Checkout the deployment documentation for more information.