Reputation: 1900
I'm looking to use ERB templates within a Node.JS application (written in Express, if it matters). Is this possible?
Upvotes: 2
Views: 2615
Reputation: 103740
There's something very similar called EJS:
When creating an express app, just use the -e flag:
express MyApp -e
Upvotes: 1