Building accessible forms
On September 14th, In The Pocket signed the Digital Inclusion Charter to underline our commitment in fighting digital exclusion. In this post I'll explain how this can be applied to handling form submissions.
React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.
Declarative views make your code more predictable and easier to debug.
Build encapsulated components that manage their own state, then compose them to make complex UIs.
We choose for React as our first choice front-end UI library because it offers us a lot of flexibility in making a project-specific setup. And React also aligns closely to our cross-platform approach, where we use React for web and React Native for mobile.
Next.js is a React framework that gives the best developer experience with all the features needed for production: hybrid static & server rendering, TypeScript support, smart bundling, route pre-fetching, and more.
Next.js allows us to build fast, performant static websites and server side rendered web applications.
Gatsby is a fast and flexible framework that generates static HTML at build time.
Remix is a full stack web framework that lets you focus on the user interface and work back through web fundamentals to deliver a fast, slick, and resilient user experience.
An approachable, performant and versatile framework for building web user interfaces.
Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.
Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes.
Angular is a JavaScript-based open-source front-end web framework for developing single-page applications. It is maintained mainly by Google and a community of individuals and corporations.
On September 14th, In The Pocket signed the Digital Inclusion Charter to underline our commitment in fighting digital exclusion. In this post I'll explain how this can be applied to handling form submissions.
Recently Google announced the support for websockets in Cloud Run. We were quite excited about it so we decided to create a small PoC to see if everything is working correctly.