React

From Bitpost wiki
Revision as of 23:30, 23 February 2023 by M (talk | contribs) (Created page with "React is a medium-sized framework that is a great fit for developing front ends. It combines HTML, JavaScript, (S)CSS into JSX Components that track "props and state". It ca...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

React is a medium-sized framework that is a great fit for developing front ends. It combines HTML, JavaScript, (S)CSS into JSX Components that track "props and state". It can increase your website development productivity pretty quickly. Especially with the addition of npm modules, which literally do everything under the Sun. (like, four times over, sadly...)

2023 Metaframework

  • I insist on fully responsive single-page-application websites.
  • I like D3. A lot.
  • I like Bootstrap.
  • I need a production build with polyfill, so I can write modern JavaScript code once and have it work ANYWHERE like magic.
  • I want a production build with minification and tree shaking of module dependencies to minimize my website load time.
  • I like the fastest possible development loop when tweaking the web UI.

With this in mind, I developed a Vite skeleton with all my tools built in.

Patterns

  • Use ES6 modules, destructuring/spread, functional components
  • Understand and abide by PROP and STATE best practices