Home > Article > Web Front-end > How to use react backend rendering template engine noox release
This article mainly introduces the release and use of noox based on the react back-end rendering template engine. The editor thinks it is quite good. Now I will share it with you and give it as a reference. Let’s follow the editor to take a look, I hope it can help everyone.
React componentization idea has attracted the attention of more and more developers. Componentization idea helps developers decouple pages into components, making the code more modular and easier to expand. The common problem of currently popular back-end template engines such as ejs, swig, jade, and art is:
You need to learn the syntax defined by various template engines, such as {{if}}, {{loop}}
The support for componentization is not strong enough, the implementation is complex, and it is not easy to use
In view of the above pain points, the author created it based on React Noox is a tool that focuses on back-end template parsing, making template parsing simpler and easier to use.
Usage
Installation
##
npm install noox
Simple demo
Template code
First create the component directory and add the template filemkdir components && cd components vi Head.jsxHead.jsx content As follows:
<head> <title>{title}</title> <meta name="description" content={props.description} /> <link rel="stylesheet" href="./css/style.css" rel="external nofollow" rel="external nofollow" /> </head>
Node.js Code
const noox = require('noox'); const nx = new noox(path.resolve(__dirname, './components'), {title: 'noox'}); let output = nx.render('Head', {description: 'hello, noox.'})Output
<head> <title>noox</title> <meta name="description" content="hello, noox." /> <link rel="stylesheet" href="./css/style.css" rel="external nofollow" rel="external nofollow" /> </head>
Principle
Noox simplifies component reference and creation based on React's Jsx. Assume that a directory structure is created as follows:
components/ Header.jsx Body.jsx Layout.jsxRun the following nodejs code:
nx = new noox(path.resolve(__dirname, './components'))Three components will be created:
nx.render('Body', props)Related recommendations:
Detailed explanation of webpack configuration and backend rendering
Backend What are the differences between rendering html, front-end template rendering html, and jquery's html?
React front-end and back-end isomorphism to prevent repeated rendering
The above is the detailed content of How to use react backend rendering template engine noox release. For more information, please follow other related articles on the PHP Chinese website!