D
D
Dmitry Verkhoumov2016-10-22 12:58:08
JavaScript
Dmitry Verkhoumov, 2016-10-22 12:58:08

Which client-side JS templater should you choose in 2016?

Hey!
There is a project, a mixture of PHP and Node.js , updates of some content come through socket.io . Data may arrive more than a few times per second. Naturally, I don’t see any sense in driving templates entirely between the client and the server, extra traffic. Please advise some JS template engine that is relevant in 2016 with client support , preferably faster .
There is undoubtedly information on the Internet, but more or less adequate articles on this topic date mainly from 2013-2014, which by IT standards is a long time ago. If I'm wrong, please share links.
Thanks in advance :)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Yarkov, 2016-10-22
@DVerkh

var data = {description: "This is the fastest of all possible template", title: "Super fast"};
var template = `${data.title} - ${data.description}`;
alert(template);

N
Nicholas, 2016-10-22
@ACCNCC

React.js

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question