Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ginterdev/endpoints
Advanced tools
Useful TypeScript types and utils for axios fetching
For now I am just experimenting.
This package makes some assumptions:
yarn add @ginterdev/endpoints
# or
npm i @ginterdev/endpoints
Let's define types for our API. For simplicity there's two endpoints only.
type Endpoints {
'POST /companies': {
body: {
name: string;
};
response: {
success: boolean;
};
};
'GET /companies': {
query?: {
searchPhrase?: string;
};
response: {
success: boolean,
companies: {
id: string;
name: string;
};
};
};
'GET /company/{id}': {
params: {
id: string;
};
response: {
success: boolean,
company: {
id: string;
name: string;
};
};
};
};
To have all the typechecking in place for our endpoints we just wrap a fetcher (currently only axios
instance is supported) with a forEndpoints
. From now on we can execute requests with a guarantee that all required things are passed correctly.
import axios from 'axios';
import { forEndpoints } from '@ginterdev/endpoints';
const request = forEndpoints<Endpoints>(axios.create());
// execute a request:
request('GET /companies', {
query: {
searchPhrase: 'github',
},
});
// URL params are automatically injected:
request('GET /companies/{id}', {
params: {
id: 'foobar',
},
});
Now we can easily extract types of specific properties for each endpoint:
import { EndpointOptions, EndpointProp } from '@ginterdev/endpoints';
type EndpointUrl = keyof Endpoints;
type Options<Url extends EndpointUrl> = EndpointOptions<Endpoints, Url>;
type Body<Url extends EndpointUrl> = EndpointProp<Endpoints, Url, 'body'>;
type Params<Url extends EndpointUrl> = EndpointProp<Endpoints, Url, 'params'>;
type Query<Url extends EndpointUrl> = EndpointProp<Endpoints, Url, 'query'>;
type Response<Url extends EndpointUrl> = EndpointProp<Endpoints, Url, 'response'>;
type CreateCompanyBody = Body<'POST /companies'>;
// { name: string }
type CreateCompanyResponse = Response<'POST /companies'>;
// { success: true }
type GetCompaniesQuery = Query<'GET /companies'>;
// { searchPhrase?: string }
type GetCompanyParams = Params<'GET /companies/{id}'>;
// { id: string }
FAQs
Useful TypeScript types and utils for axios fetching
The npm package @ginterdev/endpoints receives a total of 7 weekly downloads. As such, @ginterdev/endpoints popularity was classified as not popular.
We found that @ginterdev/endpoints 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.