教程 Getting Started with Node.js

Getting Started with Node.js

By Layla Quiñones, Nick McIntyre

In this guide, we’ll explore the fusion of p5.js and Node.js to create dynamic applications that save and retrieve user-generated drawings, animations, and sound projects! For example, you can create a Melody App where you save files with melodies you create by interacting with the canvas! Node.js allows you to easily save, replay, and edit these files right from your browser!

A p5.js logo with musical notes above it has arrows labeled with HTTP methods pointing to a cloud labeled “Internet”. Above the cloud is an icon that reads “http://”. Arrows point from the cloud to a pink cube labeled “Web Server” with the Node.js logo above it.

A p5.js logo with musical notes above it has arrows labeled with HTTP methods pointing to a cloud labeled “Internet”. Above the cloud is an icon that reads “http://”. Arrows point from the cloud to a pink cube labeled “Web Server” with the Node.js logo above it.

This tutorial is part 2 in a series of 3 tutorials that walk you through creating different versions of a melody app. 

  • Part 1: You will develop a simple melody app where users can compose melodies from a musical scale, and play them back.  
  • Part 2: In this tutorial, you will learn how to use Node.js and Express.js to route HTTP requests that retrieve and play melodies saved on your computer. 
  • Part 3: In Melody App with Node.js (coming soon!), you will learn how to integrate your simple melody app with Node.js and Express.js. You will develop a more complex Melody App where users can heir melodies onto their computers, and retrieve them for playback later.

Prerequisites

  • This guide assumes you are familiar with the basic JavaScript concepts explored in the Introduction to p5.js Tutorials and basic web development concepts explored in the Web Design Tutorials.
  • This guide requires that you use an interactive development environment (IDE) that is downloaded onto your computer. Be sure you understand how to load and save files in the IDE software you choose. Visit the Setting Up Your Environment tutorial to learn how to create and edit p5.js projects in the IDE Visual Studio Code.

Introducing Hypertext Transfer Protocol (HTTP)

Have you ever wondered why many website urls begin with https://...? Computers connected to the internet are called clients and servers. A client is the computer you use to access the internet, and servers are computers that store information such as web pages and apps. When you’re working with a web browser to access the internet, the web browser uses HTTP (Hypertext Transfer Protocol) to communicate with servers where resources like HTML documents, images, stylesheets, scripts, etc. live. Whenever you view any page on a web browser, it needs to communicate with web servers to retrieve the web pages you see!

When using the p5.js Web Editor, your code is executed within a web browser; therefore, HTTP methods are used to retrieve, store, change, and delete your projects. When you are building apps and projects where users read or write files by interacting with it, HTTP methods are also used to make this process secure and easy! 

A diagram illustrating how the p5.js Web Editor uses the GET HTTP method to retrieve index.html, sketch.js and style.css files from a web server to render a sketch. Arrows begin from the editor in a web browser, pass through a cloud labeled “Internet”, and point to a pink box labeled “Web Server”.

A diagram illustrating how the p5.js Web Editor uses the GET HTTP method to retrieve index.html, sketch.js and style.css files from a web server to render a sketch. Arrows begin from the editor in a web browser, pass through a cloud labeled “Internet”, and point to a pink box labeled “Web Server”.

The following HTTP methods are common when integrating HTTP requests into a p5.js project:

  • GET: When developing projects that require files to be retrieved from a specific server, the GET method is used. GET sends a request to the server to get the requested resource, typically identified with a url.
  • POST: When saving new files on a server, the POST method sends a request to submit changes to the server.
  • PUT: When updating or replacing existing files on a server, the PUT method requests that a server update or replace a resource that already exists.
  • DELETE: When removing existing files on a server, the DELETE method requests that a server delete a resource that already exists.

Step 1: Setting up the code in an external editor

Download and open this project folder in your editor. If you have never used Github before, here’s how to do this: press the “<> Code” button and select “Download Zip”. The zip folder that automatically downloads to your computer contains a folder named “public” that contains all the p5.js files needed to execute a p5.js program, a server.js file that enables Node.js, and a folder named “songs” that contains files you will read into your project.

A snapshot of the dropdown window that appears when the green button labeled “<> Code” is pressed in a Github repository web page. A red circle highlights the green code button, and the option in the dropdown window labeled “Download Zip”.

A snapshot of the dropdown window that appears when the green button labeled “<> Code” is pressed in a Github repository web page. A red circle highlights the green code button, and the option in the dropdown window labeled “Download Zip”.

Step 2: Install Node.js & Express.js

Node.js provides a fast and efficient runtime environment to run JavaScript code outside of the web browser. Express.js is a framework that simplifies routines and methods in Node.js so that it is easier to make powerful web applications. Since Express.js depends on modules and features in Node.js, you will install Node.js first. 

Learn more about Node.js and Express.js by visiting these resources:

Installing Node.js

For Windows and macOS:

  • Download the Installer: Go to the Node.js website and download the installer for your operating system. It’s recommended to download the LTS (Long Term Support) version for better stability.
  • Run the Installer: Once the download is complete, run the installer and follow the prompts. This will install both Node.js and npm (Node Package Manager), which is used for managing JavaScript packages.
  • Verify Installation: To ensure Node.js and npm are installed correctly, open your terminal (Command Prompt on Windows or Terminal on macOS) and type:
node -v

npm -v

Visit these resources for more information on how to use the terminal on your computer:

These commands should return the versions of Node.js and npm installed on your computer. For example, you may see v20.11.1 printed to the terminal after typing node -v and pressing the enter (or return) key. This means you have successfully installed version 20.11.1 of Node.js. If Node.js is not installed, an error message indicating that ‘node’ is not recognized as a command may be printed to the terminal instead. Similarly, you may see 10.2.4 after typing npm -v and pressing the enter key. If npm is not installed on your computer, you may receive an error message instead. In some cases, you may want to verify installation after you restart your computer to ensure that newly installed software is reflected in the terminal.

Installing Express.js

Use npm to install Express.js: Change the directory in the terminal to point to the project folder from step 1. For example, if the folder is named melody-app-starter-main” and was downloaded to thedownloads` folder on your computer, you can change the directory from the terminal by using the following command and pressing enter:

cd downloads/melody_app_starter-main
  • Create a package.json file: Type the following command in the terminal and press enter: 

    npm init -y

    The terminal should print out the contents of the new package.json file you just created in your project directory. This command initializes a new Node.js project with default values. The message may include something like:

    {
      "name": "melody_app_starter",
      "version": "1.0.0",
      "description": "p5.Oscillator and Express.js",
      "main": "server.js",
      "scripts": {
        "test": "echo \"Error: no test specified\" && exit 1",
        "start": "node server.js"
      },
      "keywords": [],
      "author": "",
      "license": "ISC"
    }

    Visit the package.json documentation in the npm reference to learn more.

  • Install Express.js: Type the following command in the terminal and press enter:

    npm install express

    Note how npm is used to access Express.js!

  • Verify Installation: You can verify that Express.js is installed on your computer by typing the following command in the terminal and pressing enter: 

    npm list

    Your terminal should display a tree structure listing all npm packages installed on your computer. If Express.js is installed, you should see something similar to this:

    [email protected] /Users/..filepath
    
    └── [email protected]

    This indicates that your computer has version 4.19.1 of Express.js installed. You can also check the node_modules folder in your project directory (for example, in the folder melody-app-starter-main) to see if Express.js is listed there.

  • Run the Server: In your terminal, type the following command and press enter:

    node server.js

    If everything is correctly installed and the Node.js server is working, a message should appear in your terminal that reads something like: 

    Server running at http://localhost:3000
  • Test the Server: Open a web browser and go to http://localhost:3000. You should see an empty canvas element in the web browser.

Step 3: Read filenames from a folder on the server

  • Open VSCode, or your chosen code editor, and open the melody_app_starter-main file
  • Look through the file tree and you should see
  • To enable reading JSON files from the server, we include instructions in the server.js file that uses a GET HTTP request. In server.js, add the following code under let app = express():
//initialize file system module
let fs = require('fs');

// API endpoint to get list of songs
app.get('/songs', (req, res) => {
  fs.readdir('songs', (err, files) => {
    if (err) {
      res.status(500).send('Error reading song files');
    } else {
      res.json({ files });
    }
  });
});

The code above initializes the file system module (fs), which provides APIs that help users interact with file systems on their computers. It also uses the app.get() method, which handles GET HTTP requests to the /songs URL. Here you use the file system module to read filenames from the folder, parse them as a JSON object, and send them in the response to the GET request.

Now that you have instructed the GET request on how to read the songs folder filenames, we can upload filenames as a JSON object in sketch.js.

  • Use preload() and loadJSON() to load files from the songs folder in a global variable named songs. Visit the p5.js reference to learn more about preload() and loadJSON().
  • Use console.log(songs) in setup() to print the contents of the JSON array.

Your sketch.js file should look like this:

//variable for JSON object with file names
let songs;

function preload() {
  //load and save the songs folder as JSON
  songs = loadJSON("/songs");
}

function setup() {
  createCanvas(400, 400);
  console.log(songs)
}

function draw() {
  background(220);
}

View your browser’s console to make sure the output of the songs variable looks something like this:

Object i
  files: Array(3)
    0: "C Major Scale.json"
    1: "Frere Jacques.json"
    2: "Mary's Lamb.json"
    length: 3
// ...prototype

Now you are ready to build the Melody App! You can access completed code for this guide in this Github repository.

Next Steps

Resources