packagist-api-client
Version:
Packgist (PHP Package Repository) API client in JavaScript.
33 lines (25 loc) • 959 B
text/typescript
import axios from 'axios';
interface IPackagistListResponse {
packageNames: [string];
}
/**
* Checkout {@link https://packagist.org/apidoc#list-packages} for more info.
*/
export async function listAll(): Promise<IPackagistListResponse> {
const response = await axios.get('https://packagist.org/packages/list.json');
return response.data;
}
/**
* Checkout {@link https://packagist.org/apidoc#list-packages-by-organization} for more info.
*/
export async function listByOrg(vendor: string): Promise<IPackagistListResponse> {
const response = await axios.get(`https://packagist.org/packages/list.json?vendor=${vendor}`);
return response.data;
}
/**
* Checkout {@link https://packagist.org/apidoc#list-packages-by-type} for more info.
*/
export async function listByType(type: string): Promise<IPackagistListResponse> {
const response = await axios.get(`https://packagist.org/packages/list.json?type=${type}`);
return response.data;
}