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

@geowiki/core

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/core

Core utilities, React hooks, and state management shared across the GeoWiki application.

latest
npmnpm
Version
0.16.9
Version published
Weekly downloads
57
18.75%
Maintainers
1
Weekly downloads
 
Created
Source

@geowiki/core

Core utilities, React hooks, and state management shared across the GeoWiki application.

Installation

npm install @geowiki/core
# or
pnpm add @geowiki/core

Peer Dependencies

npm install react react-dom next next-auth @tanstack/react-query @heroicons/react next-localization

Usage

import {
  useAppConfig,
  useClusters,
  usePermission,
  useNews,
} from "@geowiki/core";

function App() {
  const config = useAppConfig();
  const { data: clusters } = useClusters();
  const canEdit = usePermission("edit");

  return <div>{/* your app */}</div>;
}

What's Included

  • React hooks -- 50+ custom hooks for data fetching, configuration, and permissions (useAppConfig, useCluster, useClusters, useNews, usePermission, useProjects, etc.)
  • State stores -- Zustand stores for app config, layers, settings, panels, and breadcrumbs
  • Models & types -- MapLayer, Alert, ClusterDto, GlobalSettings, and more
  • Utilities -- Animation helpers, service classes, and common functions

Dependencies

This package depends on @geowiki/api-proxy, @geowiki/cms-proxy, and @geowiki/evoland-api-proxy for API communication.

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