NullAway VS infer

Compare NullAway vs infer and see what are their differences.

NullAway

A tool to help eliminate NullPointerExceptions (NPEs) in your Java code with low build-time overhead (by uber)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
NullAway infer
20 42
3,524 14,708
1.4% 0.5%
9.0 9.9
3 days ago 1 day ago
Java OCaml
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

NullAway

Posts with mentions or reviews of NullAway. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-22.
  • My Thoughts on “Bad Code”
    1 project | news.ycombinator.com | 17 Mar 2023
    Some patterns arise from language design

    * You can't express `T` where `null` is forbidden in the type system so you get NullPointerException everywhere and defensive null checks.

    * You express a sum type as a product type because your language does not have sum types .

    * Your language doesn't have first class multiple return values (or tuples) so you return extra parameters via out parameters or thread local variables such as `errno`.

    * Your language doesn't have exceptions (or algebraic effects) and can't do IO so you have monad transformers.

    * Your language doesn't have set-theoretic types so you need hacks like `thiserror` .

    * Your language doesn't have stackful coroutines or can't infer async IO for you so you have `async/await` spam or callback hell or "mono's".

    * Your language doesn't have exhaustive checks (or pattern matching) so you need a fallthrough case check on switch statements .

    * Your language doesn't have algebraic effects, so you need to pass context everywhere.

    I know someone will reply about Java's null annotation checking options, so here is one of them: https://github.com/uber/NullAway .

  • Will Project Valhalla bring Kotlin-like nulls to Java?
    1 project | /r/Kotlin | 9 Feb 2023
    If you must use Java, use Uber's Nullaway which gives null safety via Errorprone.
  • Retrofitting null-safety onto Java at Meta
    4 projects | news.ycombinator.com | 22 Nov 2022
    Does anyone have experience using this at Meta who can compare to https://github.com/uber/NullAway ?
  • How to use Java Records
    3 projects | dev.to | 18 Nov 2022
    A special kind of validation is enforcing that record fields are not null. (Un)fortunately, records do not have any special behavior regarding nullability. You can use tools like NullAway or Error Prone to prevent null in your code in general, or you can add checks to your records:
  • Backend Java 19 vs Kotlin?
    3 projects | /r/java | 31 Oct 2022
  • What does the future hold for Project Amber?
    3 projects | /r/java | 15 Sep 2022
    What do you think of https://github.com/uber/NullAway
  • Plans for Compile-time Null Pointer Safety?
    2 projects | /r/java | 16 Jul 2022
    Take a look at NullAway, a plugin for Error Prone.
  • Ask HN: What is a modern Java environment?
    22 projects | news.ycombinator.com | 29 Mar 2022
    PMD, Spotbugs, Nullaway: Java linting/static analysis (https://pmd.github.io, https://spotbugs.github.io, https://github.com/uber/NullAway)
  • Nullaway fully supports switch expressions without issues now in 0.9.5
    1 project | /r/java | 13 Jan 2022
  • What are some useful static analyzers for Java?
    9 projects | /r/java | 2 Jan 2022
    In personal projects, I've had good experiences using the error-prone compiler plugin with uber's nullaway.

infer

Posts with mentions or reviews of infer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-22.
  • An Introduction to Temporal Logic (With Applications to Concurrency Problems)
    4 projects | news.ycombinator.com | 22 Jan 2024
    I think most development occurs on problems that can't be formally modeled anyway. Most developers work on things like, "can you add this feature to the e-commerce site? And can the pop-up be blue?" which isn't really model-able.

    But that's not to say that formal methods are useless! We can still prove some interesting aspects of programs -- for example, that every lock that gets acquired later gets released. I think tools like Infer[0] could become common in the coming years.

    [0]: https://fbinfer.com/

  • Should I Rust or should I Go
    7 projects | news.ycombinator.com | 15 Sep 2023
  • Enforcing Memory Safety?
    3 projects | /r/cpp | 7 Jun 2023
    Using infer, someone else exploited null-dereference checks to introduce simple affine types in C++. Cppcheck also checks for null-dereferences. Unfortunately, that approach means that borrow-counting references have a larger sizeof than non-borrow counting references, so optimizing the count away potentially changes the semantics of a program which introduces a whole new way of writing subtly wrong code.
  • Interesting ocaml mention in buck2 by fb
    5 projects | /r/ocaml | 9 Apr 2023
    Meta/Facebook are long time OCaml users, their logo is on the OCaml website. Their static analysis tool and its predecessor are both written in OCaml.
  • CISA Director Easterly's comments about cyber security. Agree or disagree?
    1 project | /r/cybersecurity | 1 Mar 2023
    Then this idea that the US government will tell tech companies how to write secure software. Let's get this straight, the private sector, especially big tech is miles ahead of US government in this regard. Microsoft literally invented threat modelling and modern exploit mitigations. Facebook has the best appsec processes pretty much in the whole world, including their own cutting edge code analyzer. AWS uses formal verification everywhere. Meanwhile the US government itself runs mission-critical systems that's almost literally held together by bubble gum and toothpicks. Maybe they could dial down the arrogance a tad, get their own shit together, learn how this cyber stuff is actually done and only then try lecturing everyone else.
  • A plan for cybersecurity and grid safety
    6 projects | dev.to | 10 Feb 2023
    Efforts: Dependabot, CodeQL, Coverity, facebook's Infer tool, etc
  • A quick look at free C++ static analysis tools
    3 projects | /r/cpp | 4 Jan 2023
    I notice there isn't fbinfer. It's pretty cool, and is used for this library.
  • silly guy
    1 project | /r/ProgrammerHumor | 25 Dec 2022
    "Move fast, break stuff" is a great approach when you aren't pushing the broken bits to production. Fuck, even Facebook, the big "move fast, break stuff" company, uses tools to detect errors in its continuous integration toolchain. https://fbinfer.com/
  • OCaml 5.0 Multicore is out
    19 projects | news.ycombinator.com | 16 Dec 2022
  • Beyond Functional Programming: The Verse Programming Language (Epic Games' new language with Simon Peyton Jones)
    5 projects | /r/programming | 12 Dec 2022
    TBH, there's a non-zero amount of non-"ivory tower" tools you may have used that are written in functional languages. Say, Pandoc or Shellcheck are written in Haskell; Infer and Flow are written in OCaml. RabbitMQ and Whatsapp are implemented in Erlang (FB Messenger was too, originally; they switched to the C++ servers later). Twitter backend is (or was, at least) written in Scala.

What are some alternatives?

When comparing NullAway and infer you can also consider the following projects:

SonarQube - Continuous Inspection

Error Prone - Catch common Java mistakes as compile-time errors

Spotbugs - SpotBugs is FindBugs' successor. A tool for static analysis to look for bugs in Java code.

FindBugs - The new home of the FindBugs project

Checkstyle - Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Google Java Style Guide and Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.

PMD - An extensible multilanguage static code analyzer.

jQAssistant - Your Software. Your Structures. Your Rules.