Alex Rattray
Alex Rattray
Hi there, As a newcomer to the JVM interested in the benefits of Kotlin for building RESTful server applications, it'd be amazing to see an example of building one! I've...
[jest-playwright](https://github.com/playwright-community/jest-playwright) is now telling people to just use [`@playwright/test`](https://playwright.dev/docs/test-configuration) instead of Jest, eg: ```ts import { test, expect } from '@playwright/test'; test.describe('headed block', () => { test.use({ headless: false });...
## 🚀 Feature Proposal Use the `schema` prop of the the `opts` param to infer the type parameters `Body`, `QueryString`, `Response`, etc, for automagical TS types for request params/responses/bodies with...
Fixes https://github.com/risenforces/craco-alias/issues/35 Tested locally with my package. I did not invest in writing tests because I realized https://github.com/risenforces/craco-alias/issues/34 prevents this package from being useful to me – sorry!
Copying much of my comment from [a react-query discussion](https://github.com/tannerlinsley/react-query/discussions/249#discussioncomment-786076): Many teams choose between GraphQL+Apollo or REST+react-query for their server/client architecture. One of the biggest selling points of graphql+apollo is the...
In my experience, many companies define their openapi spec separately from their actual code, so it may be slightly out-of-date or incorrect. For example, the spec may say that a...
**Is your feature request related to a problem? Please describe.** Right now, `serDes` only works for fields that are `type: 'string'`, but I have found a few cases where I...
Currently I have to do this: ```ts import type { OpenAPIV3 } from "express-openapi-validator/dist/framework/types"; ``` Looking through the `framework/types.ts` file, it seems many of the types might be useful to...
I may be wrong about this, but the applescript that sets icon position (`set position of item \"$2\" to {$3, $4}`) seems not to be doing anything on Mountain Lion....
Hi, I'm considering this tool for a project, comparing it to GraphQL or django-rest-framework in python. I'd like the types described in my oas to be enforced in my application...