jsPsych/docs/markdown_docs/tutorials/hello-world.md
2015-03-29 15:41:11 +02:00

5.4 KiB

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. Download either the ZIP or TAR archive of the latest release.

releasespage

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:

folder setup

Step 3: Create a new HTML file

To edit jsPsych code, you'll need a programming-friendly text editor. Some free options are:

Once you've got a text editor that you like, create a new file in the experiment folder called experiment.html

folder setup

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

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
	</head>
	<body>
	</body>
</html>

Add the above code to the experiment.html file and save it. If you then open the file in a web browser, you should see a blank page and the title of the page will be 'My experiment'.

Step 5: Import the jsPsych library

To use jsPsych, add a <script> tag to import the library. You'll need to import the jQuery library as well, which jsPsych depends on. Make sure to import jQuery before jsPsych. jQuery can be imported directly from a hosted version on Google's servers.

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
		<script src="jsPsych-4.0/jspsych.js"></script>
	</head>
	<body>
	</body>
</html>

You may also want to import the jsPsych stylesheet, which applies a basic set of visual styles to the experiment to make it visually pleasing. This requires adding a link tag to the <head> section of the document.

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
		<script src="jsPsych-4.0/jspsych.js"></script>
		<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
	</head>
	<body>
	</body>
</html>

Step 6: Use the jspsych-text plugin to print a message

For the demo, we want to show some text on the screen. This is exactly what the jspsych-text plugin is designed to do. To use the plugin, we need to load it with a <script> tag.

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
		<script src="jsPsych-4.0/jspsych.js"></script>
		<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
		<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
	</head>
	<body>
	</body>
</html>

Once the plugin is loaded, we can create an experiment using the plugin. To declare a trial that uses the text plugin, we create a JavaScript object with the property type equal to 'text'. Then we can specify the other parameters of the plugin in the same object.

To add JavaScript code directly to the webpage we need to add a set of <script> tags after the <body> tags.

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
		<script src="jsPsych-4.0/jspsych.js"></script>
		<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
		<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
	</head>
	<body>
	</body>
	<script>

	var hello_trial = {
		type: 'text',
		text: 'Hello world!'
	}

	</script>
</html>

Now that we have the trial defined, we just need to tell jsPsych to run an experiment consisting of this trial. This requires using the jsPsych.init function and specifying the experiment_structure parameter.

<!doctype html>
<html>
	<head>
		<title>My experiment</title>
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
		<script src="jsPsych-4.0/jspsych.js"></script>
		<script src="jsPsych-4.0/plugins/jspsych-text.js"></script>
		<link href="jsPsych-4.0/css/jspsych.css" rel="stylesheet" type="text/css"></link>
	</head>
	<body>
	</body>
	<script>

	var hello_trial = {
		type: 'text',
		text: 'Hello world!'
	}

	jsPsych.init({
		experiment_structure: [ hello_trial ]
	})

	</script>
</html>

Once you've saved the file, open it in a browser. You should see "Hello world!" printed on the screen, and if you press a key on the keyboard, the text should disappear (ending the trial).