laminar VS fp-ts

Compare laminar vs fp-ts and see what are their differences.

laminar

OpenApi backed REST APIs. Automatic validation of request / response based on the api schema. (by ovotech)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
laminar fp-ts
4 97
23 10,513
- -
0.0 7.0
6 months ago about 2 months ago
TypeScript TypeScript
GNU General Public License v3.0 or later 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.

laminar

Posts with mentions or reviews of laminar. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-30.
  • Ask HN: Does Anyone Like GraphQL?
    1 project | news.ycombinator.com | 6 Jun 2023
    The main (and only) criticism I’ve ever heard about graphql in the companies I worked for was that it is very js-oriented all the best libs/frameworks for it are for react frontend / node server mostly.

    Backend scala / php devs looked at it with distaste in their eyes, coming up with various reasons why its not a good idea.

    And to be fair with tools like openapi / grpc a lot of the benefits of graphql can be replicated.

    Even if they are clumsy and fragmented compared to it in my eyes, they still work well enough and keep devs in all camps happy enough, and compromise as they say is “when everyone is equally unhappy”.

    Now placed in situations like this I am usually forced to reimplement graphql tooling with the chosen api tech (for example https://github.com/ovotech/laminar) and if me as a single dev could do it, then I’d wager if there was stronger tech leadership, all the other tech tribes could just smooth the edges that they didn’t like for using graphql in their respective languages … but sadly that has not been my experience.

  • Ask HN: Do you use JSON Schema? Help us shape its future stability guarantees
    15 projects | news.ycombinator.com | 30 Jan 2023
    I use it extensively in prod. Well the superset that is OpenApi. It enables contract first development where any change to the api is done in the schema fist, and then implemented by the clients/server.

    Since we have tooling[0] that validates requests and responses at runtime, the clients can be absolutely sure of what they receive (we through 500 if the server attempts to respond with an undocumented respond) And the server is also sure about the shape of the requests. This allows us to validate everything at compile time too, generating typescript types for both client and server.

    And since we have similar tooling regarding our data stores (typescript types for sql queries) most of the time if there is a bug, the code would simply not compile - pretty nifty!

    [0] - https://github.com/ovotech/laminar

  • SQLBolt – Interactive lessons and exercises to learn SQL
    2 projects | news.ycombinator.com | 15 Jul 2021
  • Bad TypeScript Habits to Break This Year
    9 projects | news.ycombinator.com | 2 Feb 2021
    If the api has some contract with it OpenApi / Swagger / etc, its surprisingly easy to write a parser that would convert those to typescript types. TS has an awesome use as a library itself where you can write the ast with, and then tell it to convert it to code.

    We use it to great effect ourselves, by generating types for axios.

    https://github.com/ovotech/laminar/tree/main/packages/lamina...

    Now granted, you’re now trusting the api writers with their contract, but if its another team in the org we’ve found it to be warranted.

fp-ts

Posts with mentions or reviews of fp-ts. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-24.
  • From a Lorry Driver to Ruby on Rails Developer at 38
    1 project | news.ycombinator.com | 21 Apr 2024
    I think it’s great that functional programming is making its way into traditional imperative languages - even JavaScript (I recently came across https://gcanti.github.io/fp-ts/ as a pretty extreme example)

    Elixir/Erlang has function-level pattern matching, which I really like. I’ve yet to see it anywhere else, though my understanding is it came from Prolog.

  • Type-Safe Printf() in TypeScript
    4 projects | news.ycombinator.com | 24 Mar 2024
    While I certainly agree, I've found that this is often an indication of too-complex an architecture, and a fundamental re-think being necessary. I've had projects that depend on [fp-ts], which end up incredibly generic-heavy, but still make it entirely through a typecheck(not build- typescript's just worse at that than other tools like esbuild) in seconds-at-worse.

    Obviously depends on your organization/project/application, but I do like these things as complexity-smells.

    [fp-ts]: https://gcanti.github.io/fp-ts/

  • Introducing fp-utils a functional utility library for Deno / Node
    2 projects | /r/Deno | 10 Dec 2023
    Unlike more comprehensive functional libraries like fp-ts, each module can be imported and resolved separately. If you just need options, simply add the option module and you're good to go.
  • Blog post: graphs and monads with Typescript
    2 projects | /r/typescript | 7 Dec 2023
    While it's quite abstract, I believe it may be useful to those of you who is interested to learn more about functional programming [in Typescript] and also get more intuition on diverse programming ideas. I use fp-ts as a functional programming library there.
  • Functional Programming Library for Golang by IBM
    8 projects | news.ycombinator.com | 17 Aug 2023
    The library for TypeScript that this is influenced by is here:

    https://github.com/gcanti/fp-ts

    Interesting how both languages with this library converge to a similar syntax, due to heavy use of functions.

  • Is Scala worth learning in 2023?
    5 projects | /r/scala | 29 Jun 2023
    Learn something that pays the bill first - nowadays it's Golang/Rust react/typescript. Then you can try some pure fp libs like fp-ts and fp-core.rs, and look through existing scala cats docs. If you'll feel bad about it - that's totally fine and expectable, fp takes a paradigm shift and not that many dev able to shift their brains way of thought due to basic psychological rigidity) (inability to change habits and to modify concepts/attitudes once developed). And that's purely a staffing and management issue - folks hired randoms out of the blue, and called 'em a team.
  • Application Bootstrapping with fp-ts
    2 projects | dev.to | 24 Jun 2023
    fp-ts, a library that caters to functional programming in TypeScript, comes with some micro-abstractions that already solve a few of our needs.
  • What are some strategies for ensuring correctness and fewer errors in dynamically typed languages?
    1 project | /r/ProgrammingLanguages | 22 May 2023
    Also, don't underestimate how powerful TypeScript can be in capable hands (namely Giulio Canti's). Check out fp-ts, for instance.
  • Use Pure Functions to understand functional programming
    1 project | /r/javascript | 18 May 2023
    You are able to type it using function overloads, an example can be found here - link, line 236.
  • Error Handling Patterns
    3 projects | news.ycombinator.com | 4 May 2023
    looks like more ergonomic/focused version of fp-ts[1]

    [1] https://gcanti.github.io/fp-ts/

What are some alternatives?

When comparing laminar and fp-ts you can also consider the following projects:

pgtyped - pgTyped - Typesafe SQL in TypeScript

effect - An ecosystem of tools to build robust applications in TypeScript.

schema-dts - JSON-LD TypeScript types for Schema.org vocabulary

ramda - :ram: Practical functional Javascript

alt-schema - Flat JSON Schema specification and basic utility methods

proposal-pattern-matching - Pattern matching syntax for ECMAScript

alterschema - Convert between JSON Schema specification versions.

purescript - A strongly-typed language that compiles to JavaScript

tslint - :vertical_traffic_light: An extensible linter for the TypeScript language

io-ts - Runtime type system for IO decoding/encoding

zod - TypeScript-first schema validation with static type inference

TypeScript - TypeScript is a superset of JavaScript that compiles to clean JavaScript output.