I have a one page website that works with node.js, using this as web.js:
var connect = require('connect');
var serveStatic = require('serve-static');
var port = Number(process.env.PORT || 5000);
connect().use(serveStatic(__dirname)).listen(port);
There is no routing.
I want to add a contact form. We don't have to use node-mailer for the job, if you have any better ideas I'd love to hear.
Try Postmark.js. It's simpler Or emailjs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With