SAP Home Learn Build Integrate Model Operate Extend with AI ConnectTutorial navigator Knowledge Graph API Devtoberfest Developer Advocates App Space

Manage my Account SAP Devs YouTube ↗ Learnings ↗ Community ↗ Provide Feedback ↗
Logout
โคข Open full site

Prepare the Local Development Environment

Install essential runtimes and tools for local development.

Overview

🎓 beginner 20 min. SAP Cloud PlatformCloudBeginnerNode Js

You will learn

  • โœ”How to install Node.js and npm (Node Package Manager) as a runtime
  • โœ”How to install essential tools like git and Cloud MTA Build Tool (mbt)
Thomas Jung T Thomas Jung January 14, 2025
Created by July 29, 2020
Contributors

Prerequisites

Steps

Step 1 Install the Node.js runtime
โ€”

Node.js is a server-side runtime environment built on Chrome’s V8 JavaScript engine. It provides an event-driven, non-blocking (asynchronous) I/O and cross-platform runtime environment. It enables you to build scalable server-side applications using JavaScript and is open-source. ย  Node.js can be used to build applications like command-line applications, web applications, REST API servers, and many else. It is mostly used to create network programs like web servers. For more information, visit the official site at https://nodejs.org.

Before you can start building your Node.js app, you need to install npm and Node.js. npm is included in the Node.js installation.

It is possible to download the libraries and organize the directories on your own and start that way. However, as your project (and list of dependencies) grows, this will quickly become messy. It also makes collaborating and sharing your code much more difficult.

We recommend using a package manager on your OS.

Install the Windows package manager Chocolatey.

Terminal
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

Install Node.js

Terminal
choco install nodejs
Step 2 Verify your installation
+
Step 3 Install the cloud MTA build tool
+
Step 4 Install git
+

Resources

Discussion

Share feedback on this tutorial or join the conversation in SAP Community.

Submit detailed feedback Discuss in Community
Steps
Step 1 of 4
1. Install the Node.js runtime 2. Verify your installation 3. Install the cloud MTA build tool 4. Install git

Learn more →