Coder Social home page Coder Social logo

Comments (8)

sophiebits avatar sophiebits commented on April 25, 2024

This project is only for generating markup on the server side and doesn't support attaching events on the client-side or doing client-side updates afterwards.

If you need that you'll need to call React.renderComponentToString yourself and then call React.renderComponent with the same props. Here's an example of how to do so:

https://github.com/facebook/react/tree/master/examples/server-rendering

You can also use something like react-quickstart as a template.

from express-react-views.

thom4parisot avatar thom4parisot commented on April 25, 2024

Oh okay… it is pretty cumbersome this way :-( I end up with a 500K browserified file just with 4 components.

from express-react-views.

sophiebits avatar sophiebits commented on April 25, 2024

Really? React itself is only 112k when minified (and 121k including addons). If you're seeing 500k you might be doing something wrong.

from express-react-views.

thom4parisot avatar thom4parisot commented on April 25, 2024

Well I am running browserify -t reactify -r react -r ./views/index.jsx > public/views.js on 1 view of 20 LOC(including 1 layout of 20 LOC + 4 components of 10 LOC)

Nothing much fancy.

from express-react-views.

ustun avatar ustun commented on April 25, 2024

Does it help if you try --external React and not require js?

Ustun

On May 7, 2014, at 5:01 PM, Thomas Parisot [email protected] wrote:

Well I am running browserify -t reactify -r react -r ./views/index.jsx > public/views.js on 1 view of 20 LOC(including 1 layout of 20 LOC + 4 components of 10 LOC)

Nothing much fancy.


Reply to this email directly or view it on GitHub.

from express-react-views.

thom4parisot avatar thom4parisot commented on April 25, 2024

@ustun a bit late but I solved that by using the browser field of browserify in the package.json:

  "browser": {
    "react": "./node_modules/react/dist/react.min.js"
  },

Code goes from 1.6MB to 300K.

from express-react-views.

ustun avatar ustun commented on April 25, 2024

Good to know, I have since switched to webpack though, it seems better overall. The equivalent there is the following for anyone interested:

externals: {
    "React": "React",
    "react": "React"
}

from express-react-views.

alioshr avatar alioshr commented on April 25, 2024

Hey @sophiebits , could you please re-add the link, or post a snippet as the link you´ve pasted here is no longer active?

from express-react-views.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.