Bonnes Pratiques Web & Cloud
58.8K views | +4 today
Follow
Bonnes Pratiques Web & Cloud
Administration cloud et développement web
Curated by Mickael Ruau
Your new post is loading...
Your new post is loading...

Popular Tags

Current selected tag: 'Svelte - framework javascript'. Clear
Scooped by Mickael Ruau
Scoop.it!

State of JavaScript 2021 : React reste de loin le framework front-end le plus utilisé par les développeurs, mais en terme de satisfaction il est éclipsé par Solid et Svelte

State of JavaScript 2021 : React reste de loin le framework front-end le plus utilisé par les développeurs, mais en terme de satisfaction il est éclipsé par Solid et Svelte | Bonnes Pratiques Web & Cloud | Scoop.it
Mais en terme de satisfaction il est éclipsé par Solid et Svelte
Mickael Ruau's insight:

Créé en 1995, JavaScript est aujourd'hui le langage le plus populaire selon de nombreux baromètres. C'est également l'écosystème dans lequel on voit le plus de technologies naitre tous les jours. Comme conséquence, il est parfois très difficile de faire des choix ou de voir une technologie s'imposer comme la norme à moins d'avoir de puissants sponsors pour la propulser. Selon les catégories, certaines technologies arrivent toutefois à se distinguer. C'est dans le but d'identifier clairement ces dernières qu'entre en jeu le State of JavaScript, une enquête annuelle internationale sur l'écosystème JavaScript.

Les résultats de l'édition 2021 sont disponibles et nous présentons ici les points saillants.

L'enquête State of JavaScript de 2020 est issu d'une enquête auprès de 23 000 développeurs. 2021 était le résultat d'un peu plus de 16 000. Et bien que les États-Unis soient en tête, leur part de répondants au sondage est tombée à 14 % et la Russie a grimpé à la troisième place derrière l'Allemagne avec 4 %. La France a produit 4,2 % des réponses de l'enquête, ce qui correspond à 668 développeurs JavaScript.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Svelte • Cybernetically enhanced web apps

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.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

React vs. Svelte, the JavaScript build-time framework

React vs. Svelte, the JavaScript build-time framework | Bonnes Pratiques Web & Cloud | Scoop.it

Svelte is a new way to build UIs on the web. While this may sound like it's been done many times before, Svelte has a different approach. Instead of pushing the complexity of the UI generation and maintenance in form of browser abstractions, Svelte works completely at compile time.

The key difference to React is that there is absolutely no trace of Svelte sent to the browser. Each time users need to download the whole abstraction library of React for drawing the UI. This may seem like insignificant overhead, but unlike native built-in browser functionality - downloading and initializing causes a delay.

Because the downloaded script contains only raw JavaScript, the Svelte framework can create surprisingly small applications.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Tiny JS frameworks: Preact and Svelte – Chris Davies – Medium

This week, I found out about Svelte, a teensy front-end UI framework. I’m a fan of Preact, and I wondered how big a real application with Svelte would be compared to Preact.

Short answer: a simple CRU (no D) app for creating, listing, updating a users list, complete with client-side routing using rlite-router and JS-manipulated CSS weighs in at:

  • Preact 6.2KB (min + gzip)
  • Svelte 4.8KB (min + gzip)

Without JS-based styling (e.g. with external CSS), the Svelte app came in at exactly 4KB.

Pretty sweet. That’s an entire application with front-end routing, in a much smaller than react-router alone.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Meet Svelte, the Anti-Framework JavaScript Framework

Meet Svelte, the Anti-Framework JavaScript Framework | Bonnes Pratiques Web & Cloud | Scoop.it
A new tool carves up JS frameworks, leaving only the stuff your web app actually needs.
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

10 JavaScript Frameworks You Should Know in 2021

10 JavaScript Frameworks You Should Know in 2021 | Bonnes Pratiques Web & Cloud | Scoop.it

Svelte is an open-source JavaScript framework written in Typescript. It converts the project to JavaScript at build time, not runtime. As a result, application development with Svelte is generally faster compared to other JavaScript frameworks. Companies like Codustry and Kontist use Svelte for their projects.
Pros

Uses less boilerplate code to get the same functionality as other frameworks.
Converts code into Vanilla JS.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

J'ai veillé pour vous : Svelte

J'ai veillé pour vous : Svelte | Bonnes Pratiques Web & Cloud | Scoop.it
Vous avez probablement déjà entendu parler de ce nouveau Framework Front-End – encore un ?! – qui commence à se faire un nom et se révèle aussi prometteur
No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Svelte - The magical disappearing UI framework - Interview with Rich Harris

Svelte - The magical disappearing UI framework - Interview with Rich Harris | Bonnes Pratiques Web & Cloud | Scoop.it

If jQuery gave us proper control over the DOM, and React brought components to the limelight, what's next? Svelte by Rich Harris might be an answer to this conundrum. You might remember him from tools such as Bublé and Rollup. Read on to learn what Svelte is about.

No comment yet.
Scooped by Mickael Ruau
Scoop.it!

Introducing Svelte: The Compile-Time Non-Framework - Sessions by Pusher

Introducing Svelte: The Compile-Time Non-Framework - Sessions by Pusher | Bonnes Pratiques Web & Cloud | Scoop.it
Rollups creator Rich Harris has started a new project called svelte. In this talk we will describe the reasoning behind the project, show some examples and discuss possible future directions.
No comment yet.