Latest in Templating

HomeTemplating

How to create a simple contact form with Node.js?

Project initialization. Let's start by creating an empty folder and initializing our package.json with npm init. We will also include express to set up our application, express-validator to validate the form submission, and mustache (mustache-express) to render the form.
npm init -y npm i --save express express-validator mustache-express
The basics. With our packages ready, let's go on and create our index.js. We will...

About Code with Node.js

This is a personal blog and reference point of a Node.js developer.

I write and explain how different Node and JavaScript aspects work, as well as research popular and cool packages, and of course fail time to time.