![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@insertish/oapi
Advanced tools
This is a CLI for auto-generating an API library for a given OpenAPI spec which uses JSON primarily and conforms to Revolt's API style.
Thank you to bree for helping me figure out all the especially difficult types.
Here's what you can achieve with this library:
import { API } from 'your-api';
let id = 'user_id';
// By default, we use the first server specified in the API spec.
new API()
// Path parameters are specified using template strings.
.get(`/users/${id}`)
.then(user => {
// User is still fully typed!
return user.username;
})
.then(console.log);
Conflict resolution is also automatic, so conflicting prefixes will not cause issues:
import { API } from 'your-api';
// For a route /some/{string}:
new API()
.get('/some/this is an example')
.then(x => {
x // number
})
// For a route /some/{string}/conflicting:
new API()
.get('/some/this is an example/conflicting')
.then(x => {
x // string
})
You can also provide your query and body parameters at the same time:
import { API } from 'your-api';
// PATCH /users/@me?preserve=true
// Body: { username: string }
new API()
.patch(`/users/@me`, {
// Specify query parameters
preserve: true,
// Or body parameters
username: 'something'
});
This removes the overhead of having to remember exactly what goes where and provides a much nicer (and still strongly typed) API experience.
Currently this only supports rauth and Revolt authentication, but you can still provide your own Axios config or add your own authentication.
new API({
baseURL: 'https://example.com',
authentication: {
rauth: 'session token'
}
})
Create a new project and configure it:
yarn init
yarn add @insertish/oapi axios lodash.defaultsdeep
yarn add --dev typescript openapi-typescript @types/lodash.defaultsdeep
Place your OpenAPI specification at the root of your API library at OpenAPI.json
.
Update your package.json
to include the following:
{
[...],
"scripts": {
"build": "oapilib && tsc"
}
}
Note: you may want to use STRICT=1 opailib
, see "Strict Mode" below.
Setup Typescript:
yarn exec tsc -- --init
Change tsconfig.json
to include:
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"declaration": true
}
}
Create a new src
directory.
Now generate the library: (src
folder will be overwritten!)
yarn build
anyOf
with oneOf
If your spec uses anyOf
, the values are mapped as an intersection while you may actually want all of these values to be treated as if they were oneOf
, or otherwise a union.
You can specify the environment variable REWRITE_ANYOF
to any truthy value.
REWRITE_ANYOF=1 oapilib
FAQs
API Library Generator for OpenAPI
The npm package @insertish/oapi receives a total of 172 weekly downloads. As such, @insertish/oapi popularity was classified as not popular.
We found that @insertish/oapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.