Hacker News new | past | comments | ask | show | jobs | submit login

React is a remarkably well-focused library that can work just fine without DOM, itself having no relationship with or dependency on DOM or the browser whatsoever.

If you want to render into DOM, you’ll need to use another library, ReactDOM (notably not a dependency of React).

However, rendering to DOM is not the only way to use React. Ink[0], for example, allows to create command-line program interfaces out of React functional components and JSX. It depends on React, but not ReactDOM.

Whether React internals rely on OOP and to what extent I don’t know, but I can attest that after embracing functional components in a somewhat complex app I’m working on I haven’t written a single class.

[0] http://term.ink/




What is Array.prototype.map()?


You don’t have to use map() if you don’t like it; and you’re free to pick a functional implementation from Ramda or somewhere else and use that instead, React really couldn’t care less.


What is typeof(function)?


Could you try writing a few sentences instead of three words to make a proper counterpoint? My point was that React core can be used (and sometimes forces you to use itself) in a functional manner without DOM or the browser, counter to what you have claimed; the ball’s in your court.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: