Roses wilt. Skills don’t. Our Valentine’s Day gift to you? Savings on a bootcamp, short course, or workshop of your choice.

Adobe Digital Academy, now available for marketers and creatives in the US, UK, and India.

Adobe Digital Academy, now available for marketers and creatives in the US, UK, and India.

    Get More Info
    Blog How to Easily Run JavaScript in Terminal
    Article

    How to Easily Run JavaScript in Terminal

    General Assembly
    March 15, 2021
    Learn How To Run JavaScript in a Terminal

    TL;DR

    You can run JavaScript  console in terminal or any command-line interface using Node.js, an open-source, platform-agnostic runtime that executes JavaScript outside a web browser.

    Before we take a deep dive into how to run JavaScript in browser, we need to understand few basic terminologies like:

    1. Client-Side JavaScript 
    2. Server-Side JavaScript
    3. Command Line Interface

    Client-Side JavaScript

    • JavaScript code executed in the web browser is known as client-side JavaScript. 
    • Client-side JS was originally used to add some interactivity on websites; for example, the Click on Submit button in a form sends form details to the server.
    • The <script> tag within your HTML page is used to write client-side JavScript, which is later executed by the browser.
    <script>
      console.log("Client-side JavaScript");
    </script>

    Server-Side JavaScript

    • When you run JS code outside the browser-like on a web server, it becomes server-side JavaScript.
    • Server-side JS is generally used to write the back-end logic of your web application; for instance, you can check to see if a user password matches the stored DB password.
    • You can run Server-side JavaScript using any command-line interface.

    But, what is Command Line Interface, a.k.a.,Terminal?

    • CLI is a text-based interface that allows users to perform some operation in a computer by typing commands.
    • The most common CLI for popular OS’s are:
      • Windows: Command Prompt, PowerShell
      • Mac: Terminal, iTerm

    Let’s see how to run JavaScript in these popular CLI’s:

    Running JavaScript in Terminal 

    Executing JavaScript in Terminal has two steps:

    1. Installing Node.js.
    2. Accessing Node.js in Terminal/Command Prompt.
    3. Running your JS file using node.

    Installing Node.js

    1. Go to https://nodejs.org/en/download/; you should see a web page like below:
    Screenshot of the node.js website. Node is a key tool to run JavaScript in your terminal.
    1. If you are using Windows OS, click on Windows Installer or else click on Mac Installer for macOS.
    2. Once downloaded, double-click on the installer to install Node.js.

    Checking Node.js in Your Terminal/Command Prompt

    To open your terminal in macOS:

    1. Open the Spotlight Search Bar (Cmd+Space bar).
    2. Type Terminal: it has an icon like below — open it.
    3. Once opened, type the following command:
    node -v

    If you see an output like this, v14.15.3 Node.js is installed successfully.

    Writing Your JS Code

    1. Create a new file called index.js in your Desktop/folder
    2. Let’s write some code!
    const greet = (name=”Everyone”) => {    console.log(`Hello ${name}`);}
    greet();

    Now, let’s run it!

    Running JavaScript in Your Terminal/Command Prompt

    1. Go to “Desktop path” within your Terminal/Command-Prompt:
    cd /Users/arwalokhandwala/Desktop/
    1. To run your JavaScript file using Node.js, type:
    node index.js
    1. If you see an output like below, then Congratulations! You are successfully running your JavaScript file in your Terminal/Command-Prompt:
    Hello Everyone

    Passing Runtime Arguments in Node.js

    Like in the browser, we use forms to pass custom values to our JavaScript. If you wish to pass runtime values, then you can use process.argv[2]

    const greet = (name = "Everyone") => {
       console.log(`Hello ${name}`);
    }
    greet(process.argv[2]);

    In your Terminal/Command-prompt, type:

    node index.js ArwaHello Arwa

    Conclusion

    Node.js makes it very simple to run JavaScript code in your Terminal/Command-prompt and opens a door of opportunities for a web developer.

    LET’S CONNECT

    • Australia+61
    • Bahrain+973
    • France+33
    • Singapore+65
    • United Kingdom+44
    • United States+1
    • Afghanistan+93
    • Albania+355
    • Algeria+213
    • American Samoa+1
    • Andorra+376
    • Angola+244
    • Anguilla+1
    • Antigua & Barbuda+1
    • Argentina+54
    • Armenia+374
    • Aruba+297
    • Ascension Island+247
    • Australia+61
    • Austria+43
    • Azerbaijan+994
    • Bahamas+1
    • Bahrain+973
    • Bangladesh+880
    • Barbados+1
    • Belarus+375
    • Belgium+32
    • Belize+501
    • Benin+229
    • Bermuda+1
    • Bhutan+975
    • Bolivia+591
    • Bosnia & Herzegovina+387
    • Botswana+267
    • Brazil+55
    • British Indian Ocean Territory+246
    • British Virgin Islands+1
    • Brunei+673
    • Bulgaria+359
    • Burkina Faso+226
    • Burundi+257
    • Cambodia+855
    • Cameroon+237
    • Canada+1
    • Cape Verde+238
    • Caribbean Netherlands+599
    • Cayman Islands+1
    • Central African Republic+236
    • Chad+235
    • Chile+56
    • China+86
    • Christmas Island+61
    • Cocos (Keeling) Islands+61
    • Colombia+57
    • Comoros+269
    • Congo - Brazzaville+242
    • Congo - Kinshasa+243
    • Cook Islands+682
    • Costa Rica+506
    • Croatia+385
    • Cuba+53
    • Curaçao+599
    • Cyprus+357
    • Czech Republic+420
    • Côte d’Ivoire+225
    • Denmark+45
    • Djibouti+253
    • Dominica+1
    • Dominican Republic+1
    • Ecuador+593
    • Egypt+20
    • El Salvador+503
    • Equatorial Guinea+240
    • Eritrea+291
    • Estonia+372
    • Eswatini+268
    • Ethiopia+251
    • Falkland Islands+500
    • Faroe Islands+298
    • Fiji+679
    • Finland+358
    • France+33
    • French Guiana+594
    • French Polynesia+689
    • Gabon+241
    • Gambia+220
    • Georgia+995
    • Germany+49
    • Ghana+233
    • Gibraltar+350
    • Greece+30
    • Greenland+299
    • Grenada+1
    • Guadeloupe+590
    • Guam+1
    • Guatemala+502
    • Guernsey+44
    • Guinea+224
    • Guinea-Bissau+245
    • Guyana+592
    • Haiti+509
    • Honduras+504
    • Hong Kong+852
    • Hungary+36
    • Iceland+354
    • India+91
    • Indonesia+62
    • Iran+98
    • Iraq+964
    • Ireland+353
    • Isle of Man+44
    • Israel+972
    • Italy+39
    • Jamaica+1
    • Japan+81
    • Jersey+44
    • Jordan+962
    • Kazakhstan+7
    • Kenya+254
    • Kiribati+686
    • Kosovo+383
    • Kuwait+965
    • Kyrgyzstan+996
    • Laos+856
    • Latvia+371
    • Lebanon+961
    • Lesotho+266
    • Liberia+231
    • Libya+218
    • Liechtenstein+423
    • Lithuania+370
    • Luxembourg+352
    • Macau+853
    • Madagascar+261
    • Malawi+265
    • Malaysia+60
    • Maldives+960
    • Mali+223
    • Malta+356
    • Marshall Islands+692
    • Martinique+596
    • Mauritania+222
    • Mauritius+230
    • Mayotte+262
    • Mexico+52
    • Micronesia+691
    • Moldova+373
    • Monaco+377
    • Mongolia+976
    • Montenegro+382
    • Montserrat+1
    • Morocco+212
    • Mozambique+258
    • Myanmar (Burma)+95
    • Namibia+264
    • Nauru+674
    • Nepal+977
    • Netherlands+31
    • New Caledonia+687
    • New Zealand+64
    • Nicaragua+505
    • Niger+227
    • Nigeria+234
    • Niue+683
    • Norfolk Island+672
    • North Korea+850
    • North Macedonia+389
    • Northern Mariana Islands+1
    • Norway+47
    • Oman+968
    • Pakistan+92
    • Palau+680
    • Palestine+970
    • Panama+507
    • Papua New Guinea+675
    • Paraguay+595
    • Peru+51
    • Philippines+63
    • Poland+48
    • Portugal+351
    • Puerto Rico+1
    • Qatar+974
    • Romania+40
    • Russia+7
    • Rwanda+250
    • Réunion+262
    • Samoa+685
    • San Marino+378
    • Saudi Arabia+966
    • Senegal+221
    • Serbia+381
    • Seychelles+248
    • Sierra Leone+232
    • Singapore+65
    • Sint Maarten+1
    • Slovakia+421
    • Slovenia+386
    • Solomon Islands+677
    • Somalia+252
    • South Africa+27
    • South Korea+82
    • South Sudan+211
    • Spain+34
    • Sri Lanka+94
    • St Barthélemy+590
    • St Helena+290
    • St Kitts & Nevis+1
    • St Lucia+1
    • St Martin+590
    • St Pierre & Miquelon+508
    • St Vincent & Grenadines+1
    • Sudan+249
    • Suriname+597
    • Svalbard & Jan Mayen+47
    • Sweden+46
    • Switzerland+41
    • Syria+963
    • São Tomé & Príncipe+239
    • Taiwan+886
    • Tajikistan+992
    • Tanzania+255
    • Thailand+66
    • Timor-Leste+670
    • Togo+228
    • Tokelau+690
    • Tonga+676
    • Trinidad & Tobago+1
    • Tunisia+216
    • Turkey+90
    • Turkmenistan+993
    • Turks & Caicos Islands+1
    • Tuvalu+688
    • US Virgin Islands+1
    • Uganda+256
    • Ukraine+380
    • United Arab Emirates+971
    • United Kingdom+44
    • United States+1
    • Uruguay+598
    • Uzbekistan+998
    • Vanuatu+678
    • Vatican City+39
    • Venezuela+58
    • Vietnam+84
    • Wallis & Futuna+681
    • Western Sahara+212
    • Yemen+967
    • Zambia+260
    • Zimbabwe+263
    • Åland Islands+358
    What’s your reason for connecting? *

    By providing your email, you confirm you have read and acknowledge General Assembly’s Privacy Policy and Terms of Service.