🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@geowiki/evoland-orval-api-proxy

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@geowiki/evoland-orval-api-proxy

TypeScript client library for the EvoLand API, generated using [Orval](https://orval.dev/) with React Query integration.

latest
npmnpm
Version
0.16.9
Version published
Maintainers
1
Created
Source

@geowiki/evoland-orval-api-proxy

TypeScript client library for the EvoLand API, generated using Orval with React Query integration.

Installation

npm install @geowiki/evoland-orval-api-proxy
# or
pnpm add @geowiki/evoland-orval-api-proxy

Peer Dependencies

npm install @tanstack/react-query axios

Usage

import { useGetProjects, useGetTasks } from "@geowiki/evoland-orval-api-proxy";

// Use React Query hooks for data fetching
function ProjectList() {
  const { data: projects } = useGetProjects();
  return <div>{projects?.map((p) => <span key={p.id}>{p.name}</span>)}</div>;
}

What's Included

  • React Query hooks -- Auto-generated hooks for all EvoLand API endpoints
  • API schemas -- TypeScript types matching the EvoLand OpenAPI specification
  • Axios client -- Pre-configured API client utilities

License

MIT

FAQs

Package last updated on 15 Jul 2026

Did you know?

Socket

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.

Install

Related posts