These instructions show how to use Visual Studio Code with the Live Server extension.
The newer, simpler instructions use my P5 Server extension.
Install Visual Studio Code. If you do not already have Visual Studio Code installed, download it
Launch Visual Studio Code
Enable Auto Save
Verify that File > Auto Save is enabled
Install Live Server
① Open the Extensions panel. ② Search for the “Live Server” extension. ③ Click “Install”.
Configure additional settings. The instructions in the accompanying slide presentation specify how to configure Visual Studio Code to format code whenever you save it, and to disable some of the more annoying autocomplete suggestions.
Create an HTML file. Create a new file (File > New), paste the following text into it, and save it with the name index.html
.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My Sketch</title>
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body></body>
<!-- import the javascript library file(s) -->
<script src="<https://cdn.jsdelivr.net/npm/p5@1/lib/p5.min.js>" crossorigin="anonymous"></script>
<!-- <script src="<https://cdn.jsdelivr.net/npm/p5@1/lib/addons/p5.sound.min.js>" crossorigin="anonymous"></script> -->
<!-- import the javascript sketch file -->
<script src="./sketch.js"></script>
</html>
Create a JavaScript file. Create a new file, paste the following text into it, and save it with the name sketch.js
.
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(255);
circle(mouseX, mouseY, 20);
}
In Visual Studio Code, click the Go Live button on the lower right corner of the window. (If this button is not present, perhaps you did not install the Live Server extension. Or perhaps you do not have a JavaScript project open in Visual Studio Code.)
This opens the code in Chrome (or your default browser).