Course website for the Autumn 2024 offering of CSE 440.
Building requires Node.js and the Yarn package manager.
-
Node installation and installers: https://nodejs.org/en/download/
Development has used version 20.x. This version is not currently enforced, but could be enforced through addition of
engines
topackage.json
. -
npm install --global yarn
Use Yarn to install the exact Javascript dependencies in yarn.lock
.
yarn install
With all dependencies installed, use Yarn to list project commands:
yarn run
The most common project commands will be:
-
Serve a debug build on
http://localhost:3000
, with hot reloading:yarn dev
-
Build a production bundle and create static deployment files in
dist
:yarn export
-
Apply code formatting:
yarn format