
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.
Magical SDK generation from an OpenAPI definition 🪄
api
is a library that facilitates creating an SDK from an OpenAPI definition. You can use its codegen offering to create an opinionated SDK for TypeScript or JS (+ TypeScript types).
$ npx api install https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/examples/v3.0/petstore.json
const petstore = require('@api/petstore');
petstore.listPets().then(({ data }) => {
console.log(`My pets name is ${data[0].name}!`);
});
Or you can use it dynamically (though you won't have fancy TypeScript types to help you out!):
const petstore = require('api')(
'https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/examples/v3.0/petstore.json',
);
petstore.listPets().then(({ data }) => {
console.log(`My pets name is ${data[0].name}!`);
});
The ESM syntax is supported as well:
import api from 'api';
const petstore = api('@petstore/v1.0#tl1e4kl1cl8eg8');
petstore.listPets().then(({ data }) => {
console.log(`My pets name is ${data[0].name}!`);
});
FAQs
Magical SDK generation from an OpenAPI definition 🪄
The npm package api receives a total of 56,763 weekly downloads. As such, api popularity was classified as popular.
We found that api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 open source maintainers 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.