Skip to content

Server-side JSX/TSX rendering for your express or NestJS application -- without Babel ๐Ÿš€

License

Notifications You must be signed in to change notification settings

thachp/express-tsx-views

ย 
ย 

Repository files navigation

Server-side JSX/TSX rendering for your express or NestJS application

npm version Test Coverage Build Status

Description

With this template engine, TSX files can be rendered server-side by your Express application. Unlike other JSX express renderers, this one does not rely on JSX files being transpiled by babel at runtime. Instead, TSX files are processed once by the tsc compiler.

For this to work, the templates are imported dynamically during rendering. And for this you have to provide a default export in your main TSX files. (Embeddable TSX components don't have to use a default export).

Highlights

  • Fast, since the JSX/TSX files do not have to be transpiled on-the-fly with every request
  • Works with compiled files (.js / node) and uncompiled files (.tsx / ts-node, ts-jest, ...)

Table of contents

Usage

$ npm install --save express-tsx-views

You have to set the jsx setting in your TypeScript configuration tsconfig.json to the value react and to enable esModuleInterop:

{
  "compilerOptions": {
    "jsx": "react",
    "esModuleInterop":  true,
  }
}

This template engine can be used in express and NestJS applications. The function setupReactViews() is provided, with which the engine is made available to the application.

import { setupReactViews } from 'express-tsx-views'

const options = {
  viewsDirectory: path.resolve(__dirname, '../views'),
}

setupReactViews(app, options)

The following options may be passed:

Option Type Description Default
viewsDirectory string The directory where your views (.tsx files) are stored. Must be specified. -
doctype string Doctype to be used. <!DOCTYPE html>\n
prettify boolean If activated, the generated HTML string is formatted using prettier. false
transform (html: string) => string With this optional function the rendered HTML document can be modified. For this purpose a function must be defined which gets the HTML string as argument. The function returns a modified version of the HTML string as string. -

Express

Example express app (See also example/app.ts in this project):

import express from 'express'
import { resolve } from 'path'
import { setupReactViews } from 'express-tsx-views'
import { Props } from './views/my-view'

export const app = express()

setupReactViews(app, {
  viewsDirectory: resolve(__dirname, 'views'),
  prettify: true,  // Prettify HTML output
})

app.get('/my-route', (req, res, next) => {
  const data: Props = { title: 'Test', lang: 'de' }
  res.render('my-view', data)
})

app.listen(8080)

views/my-view.tsx:

import React, { Component } from 'react'
import MyComponent from './my-component'
import { MyLayout } from './my-layout'

export interface Props {
  title: string
  lang: string
}

// Important -- use the `default` export
export default class MyView extends Component<Props> {
  render() {
    return (
      <div>Hello from React! Title: {this.props.title}</div>
    )
  }
}

NestJS

express-tsx-views can also be used in NestJS. For this purpose the template engine must be made available in your main.ts:

import { setupReactViews } from 'express-tsx-views'

async function bootstrap() {
  // ...
  setupReactViews(app.getHttpAdapter().getInstance(), {
    viewsDirectory: resolve(__dirname, '../views'),
  })
}
// ...

Example controller:

import { Props } from './views/my-view'

@Get('/my-route')
@Render('my-view')
getMyRoute(): Props {
  return { title: "Hello from NestJS", lang: "de" }
}

License

express-tsx-views is distributed under the MIT license. See LICENSE for details.

About

Server-side JSX/TSX rendering for your express or NestJS application -- without Babel ๐Ÿš€

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 51.4%
  • JavaScript 48.6%