Skip to content

Instantly share code, notes, and snippets.

@jamiebuilds
Last active January 4, 2020 02:17
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiebuilds/a20d36f96b4346f5c07b5ca251dcb2ea to your computer and use it in GitHub Desktop.
Save jamiebuilds/a20d36f96b4346f5c07b5ca251dcb2ea to your computer and use it in GitHub Desktop.

The Challenge

Compare two (or more) tools that are trying to solve a similar set of problems, without discussing any of the following:

  • Community
  • Programming Language
  • Documentation/Examples/Demos/etc
  • Stars/Forks/Downloads/Issues/PRs/Stack Overflow Answers/etc
  • Age/Maturity of tool
  • Users of tool/Who the tool is made by
  • Existing comparisons
  • Your or someone else's personal experiences

And do it without trashing either tool. Try to say things that the maintainers of both tools would agree with.

Focus on things that distinguish the tools from one another rather than rehashing everything there is to know about the tools.

In short, make your own abstract technical/architectural comparison.

Example

React & Preact are both tools for building user interfaces using trees of components.

React focuses on creating a programming model which enables developers to build better user experiences. It tends to be focused on the performance of larger, long-runing apps. The core library of React is abstracted away from the Web so you can build React "Native" apps on iOS & Android and share code between them all.

Preact is designed to be mostly API compatible with React with a much smaller bundle size, focusing on startup time performance, partially by cutting out some features of React. Many of the features of React are available in other libraries so you can "pay as you go" with bundle size. Preact tends to be a better choice for mobile web apps in where startup performance is paramount.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment