# Node binary executable

### Objetivos

* Conocer todos los argumentos en línea de comando de Node y runtime engine V8.
* Comprender la importancia de la ejecución de dichos comandos.

### Visualizar argumentos con --help

* Para visualizar todos los argumentos de node, es necesario ejecutar **`node --help`.**

![](/files/-Mb4ftz8QLUhveYRXzOj)

* Ahora si deseamos conocer los argumentos del motor de ejecución V8 (Runtime engine), ejecutar **`node --v8-options`**.

![](/files/-Mb4g5kprCVYkJZnwu8f)

### Revisando sintaxis

Para revisar la sintaxis sin ejecutar la aplicación, podemos ejecutar el comando **`node --check index.js`** o también **`node -c index.js`**, si todo está bien la consola se mostrará vacía, de lo contrario nos mostrará los errores.

### Revisaremos con detalle los siguientes temas:

{% content-ref url="/pages/-MhUXPTsTTLe5WnMhFKL" %}
[Evaluando dinámicamente el código](/node.js/node-binary-executable/dynamically-evaluating-code.md)
{% endcontent-ref %}

{% content-ref url="/pages/-MhUXcafWJxrOEcledhC" %}
[Precarga de módulos](/node.js/node-binary-executable/module-preloading.md)
{% endcontent-ref %}

{% content-ref url="/pages/-MhUXnzbZ1LfgB6vmmDA" %}
[Límite de pila de datos (Stack trace)](/node.js/node-binary-executable/stack-trace.md)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.marlonmerida.com/node.js/node-binary-executable.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
