add node modules
This commit is contained in:
54
node_modules/gitea-js/README.md
generated
vendored
Normal file
54
node_modules/gitea-js/README.md
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
# Gitea-js api client with Typescript support
|
||||
|
||||
[](https://www.npmjs.com/package/gitea-js)
|
||||
[](https://anbraten.github.io/gitea-js/)
|
||||
[](https://github.com/anbraten/gitea-js/blob/main/LICENSE)
|
||||
[](https://github.com/anbraten/gitea-js/actions)
|
||||
[](https://anbraten.github.io/gitea-js/)
|
||||
|
||||
Gitea-js is an api client automatically created from the official [Open api definition](https://gitea.com/swagger.v1.json) of Gitea. The client uses the [Fetch Api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) (native browser support) to make requests. For node you can use [cross-fetch](https://www.npmjs.com/package/cross-fetch) to polyfill the Fetch Api.
|
||||
|
||||
## Version mapping
|
||||
|
||||
The major and minor version of this library is mapped to the version of the Gitea api. The patch version of this library is incremented for every release and uses the latest patch version of Gitea.
|
||||
|
||||
| Gitea-js | Gitea |
|
||||
| -------- | ----- |
|
||||
| 1.23.x | 1.23 |
|
||||
| 1.22.x | 1.22 |
|
||||
| 1.21.x | 1.21 |
|
||||
| 1.20.x | 1.20 |
|
||||
| 1.19.x | 1.19 |
|
||||
| 1.18.x | 1.18 |
|
||||
| 1.16.x | 1.17 |
|
||||
| < 1.2.0 | 1.17 |
|
||||
|
||||
## Examples
|
||||
|
||||
### Browser
|
||||
|
||||
```ts
|
||||
import { giteaApi } from 'gitea-js';
|
||||
|
||||
const api = giteaApi('https://try.gitea.com/', {
|
||||
token: 'access-token', // generate one at https://gitea.example.com/user/settings/applications
|
||||
});
|
||||
|
||||
const repo = api.repos.repoGet('anbraten', 'gitea-js');
|
||||
console.log(repo);
|
||||
```
|
||||
|
||||
### Node.js
|
||||
|
||||
```js
|
||||
const { giteaApi } = require('gitea-js');
|
||||
const fetch = require('cross-fetch'); // You have to use a fetch compatible polyfill like cross-fetch for Node.JS
|
||||
|
||||
const api = giteaApi('https://try.gitea.com/', {
|
||||
token: 'access-token', // generate one at https://gitea.example.com/user/settings/applications
|
||||
customFetch: fetch,
|
||||
});
|
||||
|
||||
const repo = api.repos.repoGet('anbraten', 'gitea-js');
|
||||
console.log(repo);
|
||||
```
|
||||
Reference in New Issue
Block a user