# Build For Open Source

## Install Node.js

{% hint style="info" %}
When you make changes to the javascript code, you need to get a build of the code, for this you need to have Node.js installed on your computer.
{% endhint %}

Download Node.js directly from the link below and install everything on your computer.

{% embed url="<https://nodejs.org/en>" %}

***

## How to build?

1. Go to the directory of your script via CMD ( Example Command: 'cd c:\user\directory' ) <img src="https://3767924772-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKJJbe1fiy459MBXXvuFL%2Fuploads%2FLkveZ7AfdIYWxgBsNXaM%2Fimage.png?alt=media&#x26;token=22682c0f-41a3-4d86-954b-f3c2197f1865" alt="How to go to the Directory via CMD?" data-size="original">
2. After reaching the directory where our script is located; we install the necessary modules to the package. ( Example Command: 'npm install --force' / you should definitely use the --force tag.  )       ![](https://3767924772-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKJJbe1fiy459MBXXvuFL%2Fuploads%2F9q1viABtJQbICZg3TVJs%2Fimage.png?alt=media\&token=1b4a4c9f-8439-4df2-9d70-bfb49bab3a59)
3. After finishing the package installation process, you should type '**npm run build**' in the console to get a build.

{% hint style="danger" %}
If you have already completed step 2 in the directory you are in, you can skip step 2 in your next build process and access the directory directly with cd and then you can get the build with the npm run build command.
{% endhint %}

***
