Welcome to the developer environment setup guide! This page provides you with all the necessary information to set up your development environment for our platform.

System Requirements

  • Operating System: Windows, macOS, or Linux
  • Browser: The latest version of Chrome, Firefox, Safari, or Edge
  • Node.js: version 14 or higher
  • Git: version 2.20.0 or higher

Installation

  1. Install Node.js and npm: You can download and install Node.js from the official website. npm (Node Package Manager) comes bundled with Node.js, so you don't need to install it separately.
  2. Install Git: Download and install Git from the official website.
  3. Create a New Project: Navigate to the directory where you want to create your project and run the following command:
    npm init
    
  4. Install Project Dependencies: If your project has dependencies, you can install them by running the following command:
    npm install
    

Development Tools

To make your development experience smoother, we recommend the following tools:

  • Visual Studio Code: A lightweight but powerful source code editor.
  • Webpack: A module bundler for modern JavaScript applications.
  • ESLint: A tool for identifying and reporting on patterns found in ECMAScript/JavaScript.

Additional Resources

For more detailed information, please refer to our Developer Documentation.


Node.js Logo
Git Logo