express-react-views icon indicating copy to clipboard operation
express-react-views copied to clipboard

This is an Express view engine which renders React components on server. It renders static markup and *does not* support mounting those views on the client.

Results 27 express-react-views issues
Sort by recently updated
recently updated
newest added

![arch](https://user-images.githubusercontent.com/1485803/88860197-24084000-d1f3-11ea-8caa-0dd2e14a30df.PNG) My app.js is as follows : ``` var express = require('express') var app = express() const hostname = '127.0.0.1'; const port = 3000; const path = require('path'); app.set('views', __dirname...

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Hello! I added `express-react-views` to a project as was instructed in the README file. But I get this error. Why would that be? I can see the plugin in the...

I got this error return Hello {props.name}; ^ SyntaxError: Unexpected token '

Our code base uses `express-react-views` & is fairly old (~2 years) & since migrating to something like `nextjs` is not possible for us anytime soon, we have been trying to...

Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. Commits 6370e90 Mark version 5.7.4 fbc15b1 More rigorously check surrogate pairs in regexp validator See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=acorn&package-manager=npm_and_yarn&previous-version=5.7.3&new-version=5.7.4)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot...

dependencies

In some circumstances, one might want to access locals passed into the template from elsewhere in the rendering tree, without needing support code in every single view. A typical example...

Hi team, I'm getting the following error: ``` Error: Cannot find module 'babel-core' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15) at Function.Module._load (internal/modules/cjs/loader.js:507:25) at Module.require (internal/modules/cjs/loader.js:637:17) at require (internal/modules/cjs/helpers.js:22:18) at requireReact (/Users/blakewilson/projects/projectName/node_modules/consolidate/lib/consolidate.js:1338:51) at Object.newLoader...

Hello, Is that possible to run react components with express-react-views? I have the following code in index.jsx: ``` /* eslint-disable indent */ /* eslint-disable react/destructuring-assignment */ /* eslint-disable react/prop-types */...

Now that React 16 is released, looking at support for react 16 with express react views is important. Also, React 16 now provide two additional methods for node server ```...