Skip to content

uwcse440/web-cse440-24au

Repository files navigation

web-cse440-24au

Course website for the Autumn 2024 offering of CSE 440.

Installation of System Dependencies

Building requires Node.js and the Yarn package manager.

  • Node.js

    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 to package.json.

  • Yarn

    npm install --global yarn
    

Installation of Javascript Dependencies

Use Yarn to install the exact Javascript dependencies in yarn.lock.

yarn install

Yarn Commands

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
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages