Rob Kinyon
Rob Kinyon

Reputation: 1900

Is there an ERB engine for Node.JS?

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

Answers (1)

BFree
BFree

Reputation: 103740

There's something very similar called EJS:

http://embeddedjs.com/

When creating an express app, just use the -e flag:

express MyApp -e

Upvotes: 1

Related Questions