Tag: parser

Demystifying JSX: building your own JSX parser from scratch

While it’s not a web standard and Web Components are somewhat trying to replace it, JSX is an amazing technology that came with React to simplify the way we write HTML and JavaScript together. But how does it work exactly? I mean, yes, we can return JSX from a React component, but we all kn...