Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vicanso/cyberapi
API tool based on tauri, it is smaller and faster.
https://github.com/vicanso/cyberapi
api api-client rest-api tauri
Last synced: 22 days ago
JSON representation
API tool based on tauri, it is smaller and faster.
- Host: GitHub
- URL: https://github.com/vicanso/cyberapi
- Owner: vicanso
- License: apache-2.0
- Created: 2022-06-25T09:20:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-30T13:47:20.000Z (5 months ago)
- Last Synced: 2024-10-01T05:05:03.924Z (about 1 month ago)
- Topics: api, api-client, rest-api, tauri
- Language: Rust
- Homepage:
- Size: 6.61 MB
- Stars: 310
- Watchers: 5
- Forks: 34
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tauri - CyberAPI - API tool client for developer. (Applications / Networking)
README
# Cyber API
[![test library](https://img.shields.io/github/workflow/status/vicanso/cyberapi/test?label=test)](https://github.com/vicanso/cyberapi/actions?query=workflow%3A%22test%22)
[![License](https://img.shields.io/badge/License-Apache%202-green.svg)](https://github.com/vicanso/cyberapi)
[![donwnload](https://img.shields.io/github/downloads/vicanso/cyberapi/total?label=Downloads&logoColor=fff&logo=GitHub)](https://github.com/vicanso/cyberapi/releases)
CyberAPI is API tool based on tauri.English|[简体中文](./README_zh.md)|[Українська](./README_uk.md)
## Features- Support macos, windows and linux platforms, the installation package is below 10MB
- Thousands of interfaces for a single project are opened in seconds, with low memory usage
- Support dark/light theme and chinese/english/ukrainian
- Operation and configuration is simple
- Support importing configuration from postman, insonmia or swagger.
- The configuration can be exported by interface, function and project, which is convenient for sharing
- Support many custom functions
## Installation
The installer can be downloaded through [release](https://github.com/vicanso/cyberapi/releases), including windows, macos and linux versions.
Windows may need to install webview2.
## macos
> If you can't open it after installation, exec the following command then reopen:
`sudo xattr -rd com.apple.quarantine /Applications/CyberAPI.app`## Development
The project depends on rust and Nodejs. If you want to compile or participate in the development yourself, you can first install the dependencies of tauri by referring to the relevant documents [here](https://tauri.app/v1/guides/getting-started/prerequisites), and then :
```shell
yarn
```Install tauri-cli:
```shell
cargo install tauri-cli
```Running in browser mode, the data is mock:
```shell
yarn dev
```Running in app mode:
```shell
make dev
```Build the release package:
```shell
make build
```