169 похожих чатов

Can I use nunjucks in node and the browser/client-side? Yes. Nunjucks

supports all modern browsers and any version of Node.js currently supported by the Node.js Foundation.

Can I precompile templates for server-side use (Node/Express)?
No, precompiled templates are a browser/client-side optimization only. It is not necessary to precompile on the server because templates are compiled then cached the first time they are individually loaded for rendering. The compiled template will then remained cached in memory until the server restarts.

You can choose never to cache by setting configure's noCache option to true.

Can I use the same templates between nunjucks and jinja2? What are the differences?
Kind of. There are enough differences that it might take some work. The first problem is that nunjucks lets you access native JavaScript constructs, while jinja2 lets you access Python. This means that there are minor gotchas like the boolean literal being true in nunjucks but True in jinja2, and if you call native methods on arrays the API will be different.

However, if you avoid accessing the native language features (like {{ str.trim() }}) and rely solely on filters and pure templating features, it should be easy to make templates compatible.

Nunjucks has experimental support for installing APIs into the templating environment to help with Jinja compatibility. See installJinjaCompat.

Additionally, there are few jinja2 features not implemented in nunjucks:

The special self variable
for does not support if not and else
if i is divisibleby(3)-style conditionals
Sandboxed mode
Note: this makes it unsuitable for applications requiring user-defined templates
Line statements: # for item in seq
Lastly, any custom Python filters and extensions will have to be written in JavaScript.

1 ответов

14 просмотров

где тут пример препроцессинга js?

Похожие вопросы

Обсуждают сегодня

а через ESC-код ?
Alexey Kulakov
29
30500 за редактор? )
Владимир
47
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
13
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
в JclConsole объявлено так: function CtrlHandler(CtrlType: DWORD): BOOL; stdcall; - где ваше объявление с stdcall? у вас на картинке нет stdcall
Karagy
8
Ребят в СИ можно реализовать ООП?
Николай
33
program test; {$mode delphi} procedure proc(v: int32); overload; begin end; procedure proc(v: int64); overload; begin end; var x: uint64; begin proc(x); end. Уж не знаю...
notme
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта