# node app.js

`node app.js`

Run a JavaScript file with Node.js.

## What each part does

- `node` — command — run JavaScript outside the browser
- `app.js` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/node-app
