For the complete documentation index, see llms.txt. This page is also available as Markdown.

Preparation

Basics of Backend development

Try to formulate answers to these questions and bring your answers to the session:

  1. What is the server and what is the client?

  2. What is http?

  3. What is Node.js?

Basics of Node.js

Installation preparation

Node

  1. Setup node on your computer (skip to step 2 to check):

    1. Download from: nodejs.org/en/download

    2. Check if node is installed in your system by running the following commands in Command Prompt/PowerShell/Git Bash:

      • node -v

      • npm -v

      • In either case you should see the version of node or npm installed.

Postman

Last updated