Instalacao 


npm init -y

npm install express body-parser


Renderizar template 

meu-servidor/

  ├── public/

  │    └── index.html

  └── server.js


index.html 

<html>

<head>

    <title>Formulário Node.js</title>

</head>

<body>

    <h1>Exemplo de Formulário Node.js</h1>

    <form method="POST" action="/processar-formulario">

        <label for="nome">Nome:</label>

        <input type="text" id="nome" name="nome">

        <br>

        <label for="email">E-mail:</label>

        <input type="email" id="email" name="email">

        <br>

        <input type="submit" value="Enviar">

    </form>

</body>

</html>