question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

What changed between 0.1.1 and 1.0.0-alpha.3?

See original GitHub issue

Just asking because i’m curious about the difference between different implementations of virtualized lists and was pleasantly surprised to see react window being only 92b, but then saw a more recent release (1.0.0-alpha.3) that shot it up to 5.3kb: https://bundlephobia.com/result?p=react-window@0.1.1

The other implementation I was looking at is sitting at 3.5kb: https://bundlephobia.com/result?p=react-tiny-virtual-list@2.1.4

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:9 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
bvaughncommented, Jun 23, 2018

It’s literally just an empty create-react-app shell with this added to App.js:

// Added to the header:
import { FixedSizeList as List } from 'react-window';
 
// Added as a new child to the <App> component:
<List
  height={150}
  itemCount={1000}
  itemSize={35}
  width={300}
>
  {({ index, style }) => (
    <div style={style}>
      Row {index}
    </div>
  )}
</List>
0reactions
bvaughncommented, Jul 23, 2018

By the way! I just re-test this with the latest react-window release (1.0.2) and size increase after adding FixedSizeList is +2.26 KB thanks to a few build optimizations.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Versions | Totally Accurate Battle Simulator Wiki - Fandom
0.1.3 Changes and balances. Snakes now die after 30 seconds. Changed some campaign levels by replacing snake archers with other units.
Read more >
What is the proper first version? 0.1.0 or 0.0.1 or anything else?
The simplest thing to do is start your initial development release at 0.1.0 and then increment the minor version for each subsequent release....
Read more >
Manual :: Package version
Release Notes Release Stability API Stability Release Version API Version Initial release devel or alpha devel or alpha 0.1.0 0.1.0 Bugs fixed devel or alpha...
Read more >
Reference — python-semanticversion latest documentation
For instance, Version('1.0', partial=True) means “any version beginning in 1.0 ”. Version('1.0.1-alpha', partial=True) means “The 1.0.1-alpha ...
Read more >
niku 1.0.0-alpha.2 | Flutter Package - Pub.dev
[1.0.0-alpha.2] - 2021/3/28 #. Breaking Change: Swap arguments of animated. Change: Remove Nested instance from base property; Add default value of true to ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found