Course Setup Instructions

The following is a list of tutorials which will help you set up your computers with the development environment recommended for CSE 154. We ask that you try to have this done before the first quiz section so that you are able to follow along with some of the activities and demos (or ask questions about the setup). If parts of this guide are unclear please let us know.


Create a CSE 154 Working Directory

Firstly, create a directory to store your CSE 154 work in! A new subdirectory will be created for each assignment. We recommend the following structure:

path-to-your-school-folders/cse154/
  practice-work/
  cp1/
  hw1/
  cp2/
  hw2/
  ...

Chrome

You will need a Chrome browser on your machine. Webpages are rendered a bit differently between different browsers, thus for consistency we expect students to use Chrome (plus it has some very useful web development tools!).

VSCode and Git

VS Code is our recommended text editor. We will use it to program in the different languages covered in CSE 154, as well as to clone assignment Git repositories.

You need to have VS Code (or another text editor) and Git setup by the end of Week 1 to get started with your first assignment and to follow along in lecture/section. If you already have experience using Git, you may use the same process you're familiar with, but we otherwise strongly recommend you follow the VS Code/Git setup guides for CSE 154, which include helpful packages to support your web development environment in this course.

Node and Local Lint Install

Note: You do not have to set up Node.js and JSLint until we start teaching server-side programming around Week 5 of the quarter.

By default JavaScript can only be interpreted and run by a web browser. But when creating server-side programs we need code that can run on a computer (a server is essentially just a specialized computer for handling network requests). Lucky for us, we can use a piece of software called Node.js to do just that. Node.js allows you to run JavaScript on your computer like a regular Java or Python program, while also giving extra functionality that enables you to respond to network requests over the internet creating the foundation for writing JavaScript that runs on a server!

Below are two guides for installing and setting up Node.js on your computer.