# jsPsych "Hello World" experiment In the long tradition of `hello world` examples, this tutorial creates an experiment that outputs the phrase "Hello World" to the browser. Though useless as an actual experiment, the process is helpful for learning the basics of using the jsPsych library. This tutorial will assume that you know very little about how to set up a web page. ## Step 1: Download the jsPsych library Start by downloading the jsPsych library. The most recent version can always be found on the [GitHub releases page](https://github.com/jodeleeuw/jsPsych/releases). Download either the ZIP or TAR archive of the latest release.  ## Step 2: Create a folder to store your experiment files Create a folder on your computer to put the experiment files in. Once you've created the folder, open the downloaded archive from step 1, and move the extracted folder (called `jsPsych-4.0.1` if using v4.0.1 of jsPsych) into the experiment folder. Here's what it looks like on a mac:  ## Step 3: Create a new HTML file To edit jsPsych code, you'll need a programming-friendly text editor. Some free options are: * [Notepad++](http://notepad-plus-plus.org/) (Windows) * [TextMate](http://macromates.com/) (Mac OSX) * [Atom](https://atom.io) (Windows & Mac OSX) Once you've got a text editor that you like, create a new file in the experiment folder called `experiment.html`  ## Step 4: Add the bare-minimum HTML code There's some basic code that (nearly) all HTML documents have in common. Here's a typical bare-bones HTML document ```html